Skip to main content
POST
/
phone-numbers
/
search
Search available numbers
curl --request POST \
  --url https://api.goyappr.com/phone-numbers/search \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "areaCode": "55",
  "limit": 10,
  "page": 1
}
'
{
  "data": [
    {
      "phone_number": "<string>",
      "monthly_price": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

Your Yappr API key (e.g. ypr_live_...). Generate one in the dashboard under Settings → API Keys.

Body

application/json
areaCode
string

Israeli mobile prefix (50, 52, 53, 54, 55, 58). Omit to see all.

Example:

"55"

limit
integer
default:10
page
integer
default:1

Response

200 - application/json

Available numbers

data
object[]