List phone numbers with pagination. The response includes headers about rate limiting.
Pagination Options:
Page-based pagination (default):
page and limit parameters.current_page, total_pages, and total_items.Cursor-based pagination:
created_at property (ISO 8601 datetime of last seen record).use_cursor=true.limit parameter to control results per page (default: 50, max: 1000).next_cursor for subsequent requests.The API Key created in Rounded Studio.
Page number for page-based pagination (1-indexed, by default or when use_cursor=false).
Maximum number of results to return per page (default: 50, max: 1000).
Pagination mode selection: true for cursor-based pagination, false for page-based pagination.
Cursor for pagination based on the phone number created_at property (ISO 8601 datetime of last seen record).
Successfully retrieved phone numbers
List of phone number objects matching the query criteria.
Response message indicating the status of the request.
{
"details": [
{
"field": "email",
"message": "Invalid email format"
}
],
"message": "An error occurred while processing your request",
"status": 400,
"type": "generic_error"
}HTTP status code (200 for successful requests).
Next cursor value for cursor-based pagination
(ISO 8601 datetime string, only present when use_cursor=true).
Current page number (by default or when use_cursor=false).
Total number of pages available (by default or when use_cursor=false).
Total count of items matching the query criteria (by default or when use_cursor=false).