Get account
curl --request GET \
--url https://api.radarkit.ai/v1/me \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.radarkit.ai/v1/me"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.radarkit.ai/v1/me', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": {
"user": {
"id": 1,
"name": "Ada Lovelace",
"email": "ada@example.com"
},
"key": {
"name": "Reporting",
"prefix": "rk_live_a8Fk2mQ1",
"scopes": [
"read"
],
"restricted_to_projects": false,
"expires_at": null
},
"plan": {
"name": "growth",
"display_name": "Growth",
"status": "active",
"renews_at": "2026-10-01T00:00:00+00:00"
},
"credits": {
"available": 2950,
"plan": 2950,
"additional": 0,
"plan_limit": 3000
},
"export_rows": {
"available": 30000,
"plan": 30000,
"additional": 0,
"plan_limit": 30000
},
"rate_limits": {
"perMinute": 60,
"perSecond": 10
}
},
"meta": {},
"credits": {
"charged": 0,
"remaining": null
},
"request_id": "req_01j9x4m2p7q8r9s0t1u2v3w4x5"
}{
"error": {
"code": "UNAUTHENTICATED",
"message": "Missing or invalid API key. Send it as: Authorization: Bearer rk_live_YOUR_KEY"
},
"request_id": "req_01j9x4q7z8y9x0w1v2u3t4s5r6"
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
},
"request_id": "req_01j9x4m2p7q8r9s0t1u2v3w4x5"
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
},
"request_id": "req_01j9x4m2p7q8r9s0t1u2v3w4x5"
}{
"error": {
"code": "RATE_LIMITED",
"message": "Too many requests. Slow down and retry.",
"details": {
"retry_after": 21
}
},
"request_id": "req_01j9x4r2s3t4u5v6w7x8y9z0a1"
}Account
Get account
Who the key belongs to, what it may do, and how many API credits and Export rows are left.
Use it: to check a new key, or to read balances before a batch of calls.
Cost: Free.
GET
/
me
Get account
curl --request GET \
--url https://api.radarkit.ai/v1/me \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.radarkit.ai/v1/me"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.radarkit.ai/v1/me', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": {
"user": {
"id": 1,
"name": "Ada Lovelace",
"email": "ada@example.com"
},
"key": {
"name": "Reporting",
"prefix": "rk_live_a8Fk2mQ1",
"scopes": [
"read"
],
"restricted_to_projects": false,
"expires_at": null
},
"plan": {
"name": "growth",
"display_name": "Growth",
"status": "active",
"renews_at": "2026-10-01T00:00:00+00:00"
},
"credits": {
"available": 2950,
"plan": 2950,
"additional": 0,
"plan_limit": 3000
},
"export_rows": {
"available": 30000,
"plan": 30000,
"additional": 0,
"plan_limit": 30000
},
"rate_limits": {
"perMinute": 60,
"perSecond": 10
}
},
"meta": {},
"credits": {
"charged": 0,
"remaining": null
},
"request_id": "req_01j9x4m2p7q8r9s0t1u2v3w4x5"
}{
"error": {
"code": "UNAUTHENTICATED",
"message": "Missing or invalid API key. Send it as: Authorization: Bearer rk_live_YOUR_KEY"
},
"request_id": "req_01j9x4q7z8y9x0w1v2u3t4s5r6"
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
},
"request_id": "req_01j9x4m2p7q8r9s0t1u2v3w4x5"
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
},
"request_id": "req_01j9x4m2p7q8r9s0t1u2v3w4x5"
}{
"error": {
"code": "RATE_LIMITED",
"message": "Too many requests. Slow down and retry.",
"details": {
"retry_after": 21
}
},
"request_id": "req_01j9x4r2s3t4u5v6w7x8y9z0a1"
}Authorizations
Your API key. Create one in Settings, API keys. Send it as Authorization: Bearer rk_live_YOUR_KEY.
Response
The key, the plan and both balances.
Show child attributes
Show child attributes
What this call cost and what is left. Also in the X-RadarKit-Credits-Charged and X-RadarKit-Credits-Remaining headers.
Show child attributes
Show child attributes
A unique id for this call. Also in the X-Request-Id header. Quote it when you contact support.
Example:
"req_01j9x4m2p7q8r9s0t1u2v3w4x5"