Skip to main content
GET
/
api
/
v1
/
cards
/
transactions
List card transactions
curl --request GET \
  --url https://staging.qash.ai/api/v1/cards/transactions \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {}
  ],
  "nextCursor": "<string>"
}
This endpoint requires Authorization: Bearer <token>.
Use the query parameters to filter by card, transaction type, page size, or pagination cursor.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

cardId
string<uuid>

Filter by a specific card identifier.

type
string

Filter by transaction type.

limit
integer
default:50

Maximum number of results to return. Defaults to 50.

Required range: x >= 1
cursor
string

Pagination cursor from a previous response.

Response

Transaction history returned successfully.

items
object[]
required
nextCursor
string | null