Me
A single endpoint to confirm your key works and see exactly what it's allowed to do. Make this the
first call of any new integration: a 200 here proves your key, header format
and base URL are all correct before you touch anything else. It's also the only endpoint that needs no
scope: any valid, active key can call it.
Get your account
GET /meThis endpoint takes no parameters.
Response fields
| Field | Type | Description |
|---|---|---|
id |
integer | Your account id. |
shop_name |
string | Your shop's display name. |
slug |
string or null | Your shop slug. Null until the shop slug step is completed. |
seller_tier |
string | Your commission tier name, see Values. |
business |
boolean | Whether your seller profile is a business profile. |
scopes |
array of strings | The scopes this key was issued with, see Values. |
key_prefix |
string | The first 14 characters of the key, for telling keys apart. |
last_used_at |
string or null | When this key last authenticated a request. ISO 8601. |
rate_limit.read |
integer | Read requests per minute, see Rate limits. |
rate_limit.write |
integer | Write requests per minute. |
curl https://tcgplein.nl/api/v1/me \
-H "Authorization: Bearer tcgp_live_K7mP2xQ9vZ4nR8wT3yL6bC1jD5sF0gH7uM2oA9iE"
scopes is exactly what this key was issued with (see
Authentication). rate_limit
reports the effective limits described in Rate limits,
not anything specific to this key: every key shares the same read/write buckets.