Get Network Token Data
GET/v2/network_tokens/:id/data
/v2/network_tokens/:id/dataReturns the actual network token data (token number, expiry, PAR). This does not include the cryptogram — use the Create Cryptogram endpoint for that.
warning
The token number returned is sensitive data. Handle it with the same care as a card PAN.
idStringrequiredThe network token identifier (UUID)
Example Request
GET /v2/network_tokens/:id/data
Authorization: Basic <base64(api_key:api_password)>
Response
idStringThe network token identifier
numberStringThe network token number (digits)
expiry_monthIntegerToken expiry month (1-12)
expiry_yearIntegerToken expiry year including century
payment_account_referenceStringUnique identifier associated with the payment account (PAR)
Example Response
{
"result": "OK",
"data": {
"id": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
"number": "4444333322221111",
"expiry_month": 12,
"expiry_year": 2027,
"payment_account_reference": "500150F5DE22SND132Y6PR32AR5HB"
}
}