Yousef Banob
05/05/2025, 7:37 AMVapi Support Bot
05/05/2025, 7:38 AM/api-reference/calls/list
(GET List Calls endpoint)? This would likely contain the specific pagination parameters you need beyond the "limit" attribute.Yousef Banob
05/05/2025, 7:43 AMVapi Support Bot
05/05/2025, 7:44 AMGET https://api.vapi.ai/call?limit=100
For subsequent pages, use timestamp parameters:
GET https://api.vapi.ai/call?limit=100&createdAtLt=2024-05-01T00:00:00Z
Where createdAtLt
is the timestamp of the oldest record from your previous page. This fetches the next 100 records created before that timestamp.
For previous pages, use:
GET https://api.vapi.ai/call?limit=100&createdAtGt=2024-05-02T00:00:00Z
Where createdAtGt
is the timestamp of the newest record on your current page.
Does this approach work for your implementation?
Sources:
- [API Reference](https://docs.vapi.ai/api-reference/)
- [API Reference for List Calls](https://docs.vapi.ai/api-reference/calls/list)Yousef Banob
05/05/2025, 7:54 AMKings_big💫
05/05/2025, 8:12 AMKings_big💫
05/05/2025, 8:13 AM