Skip to main content
GET
/
v1
/
phone-numbers
/
requirements
Get regulatory requirements
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"
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

countryCode
string
required

Two-letter ISO country code.

Required string length: 2
type
enum<string>

Type of phone number (local, mobile, tollFree).

Available options:
local,
mobile,
tollFree

Response

List of requirements for the country/type combination.

items
object[]
required