Get KYC Supported Countries
List countries that support KYC verification
GETtexttext
/api/v2/kyc/supported-countriesReturns all countries where OZZOBiT can perform KYC verification, along with supported document types.
Response Schema
countriesarray
Array of country objects
countries[].codestring
ISO country code
countries[].namestring
Country name
countries[].supportedDocumentsarray
Accepted document types
countries[].maxKYCLevelstring
Maximum achievable KYC level
countries[].processingTimestring
Average processing time
Example
jsonjson
GET /api/v2/kyc/supported-countries
// Response:
{
"countries": [
{
"code": "US", "name": "United States",
"supportedDocuments": ["PASSPORT", "DRIVERS_LICENSE", "STATE_ID"],
"maxKYCLevel": "TIER_3",
"processingTime": "5-15 minutes"
},
{
"code": "GB", "name": "United Kingdom",
"supportedDocuments": ["PASSPORT", "DRIVERS_LICENSE"],
"maxKYCLevel": "TIER_2",
"processingTime": "10-30 minutes"
}
]
}