Skip to main content
GET
/
v1
/
me
Validate the API key and return its tenant + scopes
curl --request GET \
  --url https://api.myproceeds.xyz/v1/me \
  --header 'X-Api-Key: <api-key>'
{
  "data": {
    "user": {
      "id": "<string>",
      "email": "<string>",
      "name": "<string>",
      "walletAddress": "<string>"
    },
    "apiKey": {
      "id": "<string>",
      "name": "<string>",
      "scopes": [],
      "keyPrefix": "<string>"
    }
  },
  "meta": {
    "requestId": "<string>",
    "timestamp": "2023-11-07T05:31:56Z"
  }
}

Authorizations

X-Api-Key
string
header
required

API key in format mpk_<64 hex chars>. Can alternatively be sent as Authorization: Bearer mpk_....

Response

Key identity

data
object
required
meta
object
required