Skip to main content
GET
/
records
List records
curl --request GET \
  --url http://api.endclose.com/records \
  --header 'X-API-KEY: <api-key>'
{
  "data": [
    {
      "date": "2023-12-25",
      "type_key": "<string>",
      "id": "<string>",
      "amount": 123,
      "direction": "credit",
      "description": "<string>",
      "metadata": {},
      "status": "reconciled",
      "external_id": "<string>"
    }
  ],
  "has_more": true,
  "offset": 123
}

Authorizations

X-API-KEY
string
header
required

Query Parameters

type_key
string
required

Data source key to filter records

limit
integer
default:50
Required range: 1 <= x <= 100
offset
string

Pagination offset

Response

200 - application/json

Paginated list of records

data
object[]
has_more
boolean
offset
number