Skip to main content
GET
/
v1
/
cards
/
{card_id}
/
events
List card events
curl --request GET \
  --url https://api.platnova.com/v1/cards/{card_id}/events \
  --header 'X-API-KEY: <api-key>'
{
  "status": true,
  "data": {
    "items": [
      {
        "event_id": "UTR_3jtbBJC7lPJmYfcJXEWfaN2Sk1t57T",
        "amount": "525",
        "merchant_name": "Platnova",
        "created_at": "2025-07-22T15:45:28.223603+01:00",
        "description": "Platnova | Card withdr...",
        "type": "withdraw_card",
        "currency": "ngn",
        "status": "processing",
        "meta": {}
      },
      {
        "event_id": "UTR_zPV3SCUoo66yeH4syVxLdac7CqAvff",
        "amount": "4",
        "merchant_name": "Platnova",
        "created_at": "2025-07-22T14:29:03.940373+01:00",
        "description": "Platnova | Card creati...",
        "type": "create_card",
        "currency": "ngn",
        "status": "success",
        "meta": {}
      }
    ],
    "page": 0,
    "size": 10,
    "max_page": 0,
    "total_pages": 1,
    "total": 2,
    "last": true,
    "first": true,
    "visible": 2
  },
  "error": [],
  "message": "operation was successful"
}

Overview

Retrieve a paginated list of all events (transactions, deposits, withdrawals, etc.) associated with a specific card. This endpoint provides a complete history of card activity.

Authorizations

X-API-KEY
string
header
required

API key for authentication.

Path Parameters

card_id
integer
required

unique id of a card

Query Parameters

page
integer

0-indexed page number

size
integer

number of items per page

Response

200 - Success

status
boolean
data
object
error
any[]
message
string