GET
/
v1
/
me
/
guides
curl --request GET \
  --url https://metafy.gg/irk/api/v1/me/guides \
  --header 'Authorization: Bearer <token>'
{
  "guides": [
    {
      "id": "<string>",
      "slug": "<string>",
      "published_at": "2023-11-07T05:31:56Z",
      "name": "<string>",
      "description": "<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
Guides successfully retrieved
guides
object[]
meta
object