GET
/
v1
/
me
/
community
/
team
/
sessions
curl --request GET \
  --url https://metafy.gg/irk/api/v1/me/community/team/sessions \
  --header 'Authorization: Bearer <token>'
{
  "guides": [
    {
      "id": "<string>",
      "slug": "<string>",
      "session_count": 123,
      "duration_seconds": 123,
      "name": "<string>",
      "description": "<string>",
      "cover_url": "<string>",
      "price": {
        "value": 123,
        "value_in_cents": 123,
        "currency": "<string>"
      },
      "account": {
        "id": "<string>",
        "slug": "<string>",
        "name": "<string>",
        "partner": true,
        "profile_image_url": "<string>",
        "cover_image_url": "<string>"
      }
    }
  ],
  "meta": {
    "pagination": {
      "current_page": 123,
      "per_page": 123,
      "total_pages": 123
    }
  }
}

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.

Query Parameters

page
integer
default:1

Page number for pagination

Required range: x >= 1
per_page
integer
default:100

Number of items per page

Required range: 1 <= x <= 100

Response

200
application/json

Sessions successfully retrieved

The response is of type object.