Skip to main content
GET
/
api
/
wallet
Get wallet tokens
curl --request GET \
  --url https://{cluster_id}.on-hellgate.cloud/api/wallet \
  --header 'x-api-key: <api-key>'
import requests

url = "https://{cluster_id}.on-hellgate.cloud/api/wallet"

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://{cluster_id}.on-hellgate.cloud/api/wallet', 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://{cluster_id}.on-hellgate.cloud/api/wallet",
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://{cluster_id}.on-hellgate.cloud/api/wallet"

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://{cluster_id}.on-hellgate.cloud/api/wallet")
.header("x-api-key", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://{cluster_id}.on-hellgate.cloud/api/wallet")

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
{
  "data": [
    {
      "id": "0d5c1774-5f3f-4a2f-9c86-1f30a0ea9be2",
      "kind": "google_pay_pan_only",
      "ingestion_path": "google_pay",
      "scheme": "visa",
      "auth_method": "PAN_ONLY",
      "requires_3ds": true,
      "card": {
        "scheme": "visa",
        "last4": "4242",
        "expiry_month": 12,
        "expiry_year": 2028
      },
      "created_at": "2026-06-29T12:00:00Z"
    }
  ],
  "links": {
    "next": "https://my-cluster-id.on-hellgate.cloud/api/wallet?after=0d5c1774-5f3f-4a2f-9c86-1f30a0ea9be2&limit=20"
  }
}
{
"code": 401,
"message": "No valid means of authentication was provided",
"classifier": "UNAUTHORIZED"
}
{
"code": 403,
"message": "Not allowed to access this resource or feature",
"classifier": "FORBIDDEN"
}

Authorizations

x-api-key
string
header
required

Query Parameters

limit
integer
default:20

The limit parameter defines the maximum number of rows returned in a single call and enables consecutive pagination using the next link provided in the response payload.

Required range: 1 <= x <= 100

Response

Success response

data
Wallet Token · object[]
required