All transactions can be listed by calling the GET /transactions API.

curl -i -X GET "https://api.example.gr4vy.app/transactions" \
    -H "Authorization: Bearer [JWT_TOKEN]"

The response includes a list of transactions as well as a cursor that points to the next and previous page of results.

Filter transactions

The GET /transactions API supports various query parameters to filter the results. For example, the external_identifier query parameter can be used to find results by the transaction’s external_identifier.

curl -i -X GET "https://api.example.gr4vy.app/transactions?external_identifier=fe26475d-ec3e-4884-9553-f7356683f7f9" \
    -H "Authorization: Bearer [JWT_TOKEN]"