Get regulatory requirements for purchasing phone numbers in a specific country. Some countries require additional documentation (addresses, identity documents) before phone numbers can be activated.
curl --request GET \
--url https://api.zavu.dev/v1/phone-numbers/requirements \
--header 'Authorization: Bearer <token>'{
"items": [
{
"id": "req_123",
"countryCode": "DE",
"phoneNumberType": "local",
"action": "ordering",
"requirementTypes": [
{
"id": "address_proof",
"name": "Proof of Address",
"description": "A document proving your address in Germany",
"type": "document"
}
]
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Two-letter ISO country code.
2Type of phone number (local, mobile, tollFree).
local, mobile, tollFree List of requirements for the country/type combination.
Show child attributes
curl --request GET \
--url https://api.zavu.dev/v1/phone-numbers/requirements \
--header 'Authorization: Bearer <token>'{
"items": [
{
"id": "req_123",
"countryCode": "DE",
"phoneNumberType": "local",
"action": "ordering",
"requirementTypes": [
{
"id": "address_proof",
"name": "Proof of Address",
"description": "A document proving your address in Germany",
"type": "document"
}
]
}
]
}