Request:
curl -X GET 'https://api.taap.it/v1/domains?sort_by=created_at&sort_order=desc&page=1&page_size=20&cursor=eyJpZCI6ImRvbWFpbl85ODc2NTQzMjEifQ==' \
-H 'Authorization: Bearer taapit_your_api_key_here'
Response:
{
"items": [
{
"id": "domain_987654321",
"domain": "links.yourcompany.com",
"is_verified": true,
"created_at": "2024-01-15T10:30:00Z"
}
],
"page": 1,
"page_size": 10,
"has_next": false
}
Authorization
Bearer token for API authentication. Format: Bearer YOUR_API_KEY
Query Parameters
Cursor for pagination (use for efficient pagination)
Page number (starts from 1)
Number of items per page (maximum 100)
Sorting Parameters
Field to sort by (e.g., “created_at”, “updated_at”, “domain”)
Sort order: “asc” for ascending or “desc” for descending