Pagination
Every list endpoint on Frame uses the same pagination shape. Pass page and per_page as query parameters; the response wraps results in data and ships pagination state in meta.
Parameters
per_pageintegeroptional
Number of results per page. Range 1–100. Defaults to 10.
pageintegeroptional
The page to fetch. 1-indexed.
Response shape
dataarrayoptional
The page of results.
metaobjectoptional
Pagination state for this response.
RESPONSE
{
"meta": {
"page": 1,
"url": "/v1/transfers",
"has_more": false,
"prev": null,
"next": null
},
"data": [
{
"id": "f47a2dd3-e0b1-55ec-b633-23c1bbc101ec",
"object": "transfer",
"status": "succeeded",
"amount": 2000,
"currency": "USD",
"account_id": "c1a4a27f-d6e4-46e2-9557-fd5faaa31e7d",
"description": "Order #12345",
"livemode": false,
"created": 1713323382
},
{...},
{...}
]
}