Skip to main content
POST
/
cards
/
{cardIdentifier}
/
transactions
Get transactions for a card
curl --request POST \
  --url https://apigwuat.corpay.com/cards/{cardIdentifier}/transactions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "transactionDateFrom": "2023-12-25",
  "transactionDateTo": "2023-12-25",
  "billingStatus": "Billed",
  "productIds": [
    123
  ],
  "cursor": "<string>",
  "limit": 123,
  "sortExpression": "<string>"
}
'
{
  "$ref": "#/components/schemas/TransactionsResponse/example"
}

Documentation Index

Fetch the complete documentation index at: https://api.corpay.com/llms.txt

Use this file to discover all available pages before exploring further.

Performance expectations:
p50: 250 ms, p99: 1500 ms.
Measured on successful requests (2xx), server-side only.
How to interpret these metrics

Authorizations

Authorization
string
header
required

Use OAuth2 client credentials to obtain a bearer token.

UAT token endpoint: POST https://apigwuat.corpay.com/keycloak/realms/longship/protocol/openid-connect/token

Example:

curl --location 'https://apigwuat.corpay.com/keycloak/realms/longship/protocol/openid-connect/token' \
--header 'accept: application/json' \
--data-urlencode 'grant_type=client_credentials' \
--data-urlencode 'client_id=.......' \
--data-urlencode 'client_secret=......'

Path Parameters

cardIdentifier
integer
required

Body

application/json
transactionDateFrom
string<date>
transactionDateTo
string<date>
billingStatus
enum<string>
Available options:
Billed,
Unbilled,
All
productIds
integer[]
cursor
string
limit
integer
sortExpression
string

Response

Transactions

hasNextPage
boolean
lastPage
boolean
nextCursor
string
totalCount
integer
transactions
object[]