Introduction
🚧
The Testify API is still in alpha and is subject to change without notice. Please contact us if you have any questions.
For certain endpoints, the Testify API uses pagination to divide the results into manageable chunks.
API Request Format
For paginated endpoints, they accept query parameters limit
and offset
:
GET /v1/{endpoint}?limit=25&offset=50 HTTP/1.1
Host: api.testify.so
X-API-Key: YOUR_API_KEY
API Response Format
All paginated API responses include a pagination
field in the response with the following format:
{
"some_data_type": [
...
],
"pagination": {
"limit": 50,
"offset": 0,
"total": 1
}
}