KuikCodeDocs
APIReferenceWorkspace

Who am I

GET
/me

The key you are calling with, the workspace it belongs to, the plan's ceilings and current usage. The first call every integration should make.

AuthorizationBearer <token>

An API key from Settings, Developers: Authorization: Bearer kc_live_...

In: header

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/me"
{  "key": {    "id": "string",    "name": "string",    "scope": "read"  },  "workspace": {    "id": "string",    "name": "string",    "slug": "string",    "plan": "free",    "planName": "string"  },  "limits": {    "codes": 0,    "folders": 0,    "pages": 0,    "bulkBatch": 0,    "apiKeys": 0,    "apiRequestsPerMinute": 0  },  "usage": {    "codes": 0,    "folders": 0,    "pages": 0,    "apiKeys": 0  }}