GET
/
v1
/
me
/
community
curl --request GET \
  --url https://metafy.gg/irk/api/v1/me/community \
  --header 'Authorization: Bearer <token>'
{
  "community": {
    "id": "<string>",
    "title": "<string>",
    "description": "<string>",
    "logo_url": "<string>",
    "cover_url": "<string>",
    "url": "<string>",
    "tiers": [
      {
        "id": "<string>",
        "name": "<string>",
        "description": "<string>",
        "cover_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
Community information successfully retrieved
community
object