Platitun · API · Catalogue and requests · Who am I

Who am I

GET /api/v1/me

Key scope: catalog · read only

A key check and the seller state in one request: nickname, status, whether listings reach the storefront and what is missing for that. Available to any key with at least one scope — the only endpoint without a scope of its own.

This response is the fastest way to see why your stock is not on the storefront: look at blockers instead of guessing.

Response fields

FieldTypeWhat it is
sellerIdstringThe seller’s internal id.
nicknamestring|nullThe nickname the buyer sees.
isTestbooleanTest role: deals are not real and listings are born as test ones.
sellerTypestring|nullooo, ip or self_employed.
sellerStatusstring|nullpending, active, suspended or blocked.
listablebooleanWhether listings reach the storefront right now.
blockersarrayWhat is missing before the storefront. An empty list means everything is fine. Computed by the same core as the storefront.
scopesarrayWhat THIS key can do.

Example

GET /api/v1/me
Authorization: Bearer ptk_…

→ 200 {
  "nickname": "seller_A",
  "isTest": true,
  "listable": true,
  "blockers": [],
  "scopes": ["catalog","listings","stock","stats"]
}

Nearby in this section