Pagination

List endpoints return the 100 most recent resources in the current mode, sorted newest first. There is no cursor or offset yet - if you need more than 100, export from the dashboard or filter by your own metadata.

Response Shape

{
  "success": true,
  "data": [
    {
      "id": "ch_...",
      "amount": 9900
    },
    {
      "id": "ch_...",
      "amount": 4900
    }
  ]
}

Ordering

Every list endpoint orders by created descending. Expect the first element of data to be the newest resource you created.

Heads up: For reconciliation jobs that need every record, use the dashboard CSV export rather than polling list endpoints.