GET
/
v1
/
me
curl --request GET \
  --url https://metafy.gg/irk/api/v1/me \
  --header 'Authorization: Bearer <token>'
{
  "user": {
    "id": "<string>",
    "slug": "<string>",
    "name": "<string>",
    "email": "jsmith@example.com",
    "partner": true,
    "profile_image_url": "<string>",
    "cover_image_url": "<string>"
  }
}

Authorizations

Authorization
string
header
required

This API uses OAuth 2 with the authorization code flow.

You must pass in your client_id to the Authorization header using Bearer.

Response

200
application/json
User profile successfully retrieved
user
object