Skip to main content
GET
/
v1
/
phones
curl https://api.infinipost.co/v1/phones?status=ready \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "data": [
    {
      "id": "phone_abc123",
      "geelarkPhoneId": "557536075321468390",
      "status": "ready",
      "region": "us",
      "createdAt": "2024-04-21T20:00:00Z"
    }
  ],
  "total": 15,
  "hasMore": true
}

Query Parameters

status
string
Filter by status: ready, provisioning, or failed.
limit
number
default:"50"
Number of phones to return (max 100).
offset
number
default:"0"
Number of phones to skip for pagination.

Response

data
array
Array of phone objects.
total
number
Total number of phones.
hasMore
boolean
Whether there are more phones beyond this page.
curl https://api.infinipost.co/v1/phones?status=ready \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "data": [
    {
      "id": "phone_abc123",
      "geelarkPhoneId": "557536075321468390",
      "status": "ready",
      "region": "us",
      "createdAt": "2024-04-21T20:00:00Z"
    }
  ],
  "total": 15,
  "hasMore": true
}