Skip to main content
GET
/
v1
/
phone-numbers
/
supported-countries
List countries available for outreach
curl --request GET \
  --url http://api.stuut.ai/v1/phone-numbers/supported-countries \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "continent": "<string>",
      "country_codes": [
        "<string>"
      ],
      "iso_country_code": "<string>",
      "name": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

Successful response

data
object[]