{"id":19982982,"url":"https://github.com/veryfi/veryfi-csharp","last_synced_at":"2025-05-04T05:32:46.243Z","repository":{"id":46814035,"uuid":"397026708","full_name":"veryfi/veryfi-csharp","owner":"veryfi","description":"This is the official C# client library for communicating with the Veryfi OCR API. || read: https://veryfi.com/csharp","archived":false,"fork":false,"pushed_at":"2024-04-08T16:52:05.000Z","size":3537,"stargazers_count":9,"open_issues_count":1,"forks_count":2,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-04-21T03:56:22.007Z","etag":null,"topics":["api","csharp","csharp-library","csharp-sdk","dotnet","dotnet-core","dotnetcore","microsoft","netstandard","sdk"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/veryfi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2021-08-17T00:24:20.000Z","updated_at":"2024-04-21T03:56:22.008Z","dependencies_parsed_at":"2024-04-08T17:53:04.971Z","dependency_job_id":null,"html_url":"https://github.com/veryfi/veryfi-csharp","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/veryfi%2Fveryfi-csharp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/veryfi%2Fveryfi-csharp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/veryfi%2Fveryfi-csharp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/veryfi%2Fveryfi-csharp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/veryfi","download_url":"https://codeload.github.com/veryfi/veryfi-csharp/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224385345,"owners_count":17302468,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","csharp","csharp-library","csharp-sdk","dotnet","dotnet-core","dotnetcore","microsoft","netstandard","sdk"],"created_at":"2024-11-13T04:13:47.490Z","updated_at":"2024-11-13T04:13:48.078Z","avatar_url":"https://github.com/veryfi.png","language":"C#","readme":"# Veryfi C# Client Library\n\n\n[![Language](https://img.shields.io/badge/language-C%23-blue.svg?style=flat-square)](https://github.com/veryfi/veryfi-csharp/search?l=C%23\u0026o=desc\u0026s=\u0026type=Code) \n[![License](https://img.shields.io/github/license/veryfi/veryfi-csharp.svg?label=License\u0026maxAge=86400)](LICENSE) \n[![Requirements](https://img.shields.io/badge/Requirements-.NET%20Standard%202.0-blue.svg)](https://github.com/dotnet/standard/blob/master/docs/versions/netstandard2.0.md) \n[![Requirements](https://img.shields.io/badge/Requirements-.NET%20Framework%204.5-blue.svg)](https://github.com/microsoft/dotnet/tree/master/releases/net45) \n[![Build Status](https://github.com/veryfi/veryfi-csharp/workflows/.NET/badge.svg?branch=master)](https://github.com/veryfi/veryfi-csharp/actions/workflows/dotnet.yml)\n\n**Veryfi** is a C# Client Library for communicating with the [Veryfi OCR API](https://veryfi.com/api/)\n\n## Getting Started\n\n### Obtaining Client ID and user keys\nIf you don't have an account with Veryfi, please go ahead and \nregister here: [https://hub.veryfi.com/signup/api/](https://hub.veryfi.com/signup/api/)\n\n### Documentation\n[OpenAPI 3 Specification](https://app.swaggerhub.com/apis/Veryfi/verify-api/)\n\n## Nuget\n\n[![NuGet](https://img.shields.io/nuget/dt/Veryfi.svg?style=flat-square\u0026label=Veryfi)](https://www.nuget.org/packages/Veryfi/)\n\n```\nInstall-Package Veryfi\n```\n\n## Usage\n\n```cs\nusing Veryfi;\n\nusing var client = new HttpClient();\nvar api = new VeryfiApi(\"username\", \"apiKey\", \"clientId\", client);\n\n// Get Documents\nvar documentsResponse = await api.DocumentsAsync();\n\n// Process Document URL.\nvar documentResponse = await api.Documents2Async(\n    new DocumentPOSTJSONRequest\n    {\n        File_url = url\n    });\n\n// Process Document Base64\nvar documentResponse = await api.Documents2Async(\n    new DocumentPOSTJSONRequest\n    {\n        File_name = file.FileName,\n        File_data = Convert.ToBase64String(file.AsBytes())\n    });\n```\n\n## Live Example\n\nC# .NET Fiddle - https://dotnetfiddle.net/voU3yG  \nVB.NET .NET Fiddle - https://dotnetfiddle.net/4B8z6n  \n\n## Developers\nThe code is generated using https://github.com/RicoSuter/NSwag  \nNuGet packages are released and versioned automatically. \nAny commit with the `feat:`/`fix:`/`perf:` prefix will release a new version of the package \n(according to https://www.conventionalcommits.org/en/v1.0.0/).\n\n## Need help?\nIf you run into any issue or need help installing or using the library, please contact support@veryfi.com.\n\nIf you found a bug in this library or would like new features added, then open an issue or pull requests against this repo!\n\nTo learn more about Veryfi visit https://www.veryfi.com/\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fveryfi%2Fveryfi-csharp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fveryfi%2Fveryfi-csharp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fveryfi%2Fveryfi-csharp/lists"}