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>'
import requests

url = "https://api.platnova.com/v1/cards/{card_id}/events"

headers = {"X-API-KEY": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {'X-API-KEY': '<api-key>'}};

fetch('https://api.platnova.com/v1/cards/{card_id}/events', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.platnova.com/v1/cards/{card_id}/events",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-KEY: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.platnova.com/v1/cards/{card_id}/events"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("X-API-KEY", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.platnova.com/v1/cards/{card_id}/events")
.header("X-API-KEY", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.platnova.com/v1/cards/{card_id}/events")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["X-API-KEY"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "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"
}
{
"status": false,
"data": {},
"error": [],
"message": "card not found"
}

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