Account
Endpoint
This endpoint returns account details for the authenticated API key, including your remaining balance, overage configuration, and per-product subscription status with cycle-to-date usage.
Authentication
Include your API key as the x-api-key request header.
x-api-key: YourSecretAPIKey
Response fields
| Field | Type | Description |
|---|---|---|
balance | number | Remaining prepaid balance on the account, in credits. |
overageEnabled | boolean | Whether overage billing is enabled for this account. |
overageSpendingLimit | number | Maximum overage the account may accrue this cycle, in credits. 0 means no limit set. |
subscriptions | object | Map of product key to subscription object. See fields below. |
Per-subscription fields (each value under subscriptions):
| Field | Type | Description |
|---|---|---|
planId | string | Plan identifier (for example steam-full, endpoint-2.5m, thirdparty-none). |
startDate | string (ISO 8601) | When the current plan started. |
endDate | string (ISO 8601) | When the current plan term ends. |
status | string | Subscription status (for example active). |
autoRenew | boolean | Whether the subscription auto-renews at nextRenewalDate. |
pendingPlanId | string | null | Plan the subscription will switch to at the next cycle, if any. |
pendingChangeType | string | null | Type of pending change (upgrade, downgrade), or null. |
cycleStartDate | string (ISO 8601) | Start of the current billing cycle. |
nextRenewalDate | string (ISO 8601) | Next scheduled renewal date. |
usage | object | Map of endpoint path or usage category to request count consumed this cycle. |
billedOverage | number | Overage amount already billed this cycle, in credits. |
Subscription products and plans
The subscriptions object is keyed by product category. Each product has its own set of plans; planId values are scoped to their product category.
STEAM_DATA
Core Steam data quota (profiles, inventories, apps, items).
| Plan ID | Price | Interval |
|---|---|---|
steam-none | Free | month |
steam-30days | €4.99 | month |
steam-180days | €19.99 | month |
steam-full | €29.99 | month |
EXTRA_REQUESTS
Additional request quota on top of the base plan. Priced per month, with per-request overage.
| Plan ID | Max requests | Price | Interval |
|---|---|---|---|
endpoint-none | 500 | Free | per request |
endpoint-100k | 100,000 | €9.99 | month |
endpoint-250k | 250,000 | €24.99 | month |
endpoint-500k | 500,000 | €44.99 | month |
endpoint-1m | 1,000,000 | €89.99 | month |
endpoint-2.5m | 2,500,000 | €189.99 | month |
endpoint-10m | 10,000,000 | €599.99 | month |
endpoint-40m | 40,000,000 | €1,799.99 | month |
THIRD_PARTY_MARKET_DATA
Third-party marketplace data access.
| Plan ID | Price | Interval |
|---|---|---|
thirdparty-none | Free | month |
thirdparty-data | €49.99 | month |
thirdparty-data-history-15 | €54.99 | month |
thirdparty-data-history-30 | €69.99 | month |
thirdparty-data-history-180 | €99.99 | month |
THIRD_PARTY_ADDON_SALES
Third-party sales data add-on.
| Plan ID | Price | Interval |
|---|---|---|
addons-sales | €49.99 | month |
THIRD_PARTY_ADDON_WSS
Third-party WebSocket stream add-on.
| Plan ID | Price | Interval |
|---|---|---|
addons-wss | €39.99 | month |
Plan IDs and prices may change over time. Treat the planId as an opaque identifier scoped to its product category.
Response example
{
"success": true,
"result": {
"balance": 493177.0881900459,
"overageEnabled": true,
"overageSpendingLimit": 0,
"subscriptions": {
"STEAM_DATA": {
"planId": "steam-full",
"startDate": "2026-01-19T03:35:35.815Z",
"endDate": "2026-05-19T03:35:35.815Z",
"status": "active",
"autoRenew": true,
"pendingPlanId": null,
"pendingChangeType": null,
"cycleStartDate": "2026-01-19T03:35:35.815Z",
"nextRenewalDate": "2026-05-19T03:35:35.815Z",
"usage": {
"steam/inventory": 122935,
"steam/profile": 83223,
"market/items": 276,
"market/item": 20928,
"/v2/steam/users/:steamid": 5,
"/v2/steam/apps/:appId": 5
},
"billedOverage": 0
},
"EXTRA_REQUESTS": {
"planId": "endpoint-2.5m",
"startDate": "2026-01-19T03:35:36.067Z",
"endDate": "2026-05-19T03:35:35.815Z",
"status": "active",
"autoRenew": true,
"pendingPlanId": null,
"pendingChangeType": null,
"cycleStartDate": "2026-01-19T03:35:35.815Z",
"nextRenewalDate": "2026-05-19T03:35:35.815Z",
"usage": {
"steam/profile": 83223,
"steam/inventory": 122476,
"market/item": 20928,
"/v2/steam/apps": 1,
"/v2/steam/users/:steamid/friends": 1
},
"billedOverage": 0
},
"THIRD_PARTY_MARKET_DATA": {
"planId": "thirdparty-none",
"startDate": "2026-01-19T03:38:43.170Z",
"endDate": "2026-05-19T03:35:35.815Z",
"status": "active",
"autoRenew": true,
"pendingPlanId": null,
"pendingChangeType": null,
"cycleStartDate": "2026-01-19T03:35:35.815Z",
"nextRenewalDate": "2026-05-19T03:35:35.815Z",
"usage": {
"market/items": 276,
"market/item": 20928
},
"billedOverage": 0
}
}
}
}