Skip to main content

Retrieve Token

Retrieves a single token's information
POST/isp/token

Authentication

Basic user:pass authentication

Request Body

token
Required
Type:string
Description:

The token to retrieve information for

Code Example

const axios = require('axios');

const url = "https://api.unknownproxies.com/api/v1/isp/token";
const headers = {
"Authorization": "Basic dXNlcjpwYXNz",
"Content-Type": "application/json"
};
const data = {
"token": "your-token-here"
};

try {
const response = await axios.post(url, {
headers,
data
});
console.log(response.data);
} catch (error) {
console.error('Error:', error.response?.data || error.message);
}

Response Example

{
  "token": "zu8sBXS4gkh7",
  "username": "kGyohRdaGo",
  "authType": "user",
  "password": "bkXBberMQ7",
  "proxyType": "http",
  "authenticatedIps": [],
  "proxies": [
    "123.123.123.123:12345",
    "123.123.111.111:8888"
  ],
  "durationHours": 720,
  "status": "active",
  "createdAt": 1752251968,
  "updatedAt": 1754843968,
  "dataUsage": 11574848653,
  "region": "US",
  "product": "TICK",
  "quantity": 2
}

Token Case Sensitivity

Token identifiers are case-sensitive. For example, ABC123def456 is different from abc123DEF456. Make sure to use the exact case when specifying a token in API requests.

After retrieving a token, you can:

To understand the complete token data structure, see the ISP Token Schema documentation.