Skip to main content
GET
/
reels
Get Reels
curl --request GET \
  --url https://api-dev.monyfix.tech/reels \
  --header 'Authorization: Bearer <token>'
[
{
"id": 123,
"title": "<string>",
"preview_picture": "<string>",
"queue": 123,
"items": [
{
"id": 123,
"title": "<string>",
"queue": 123,
"is_last": true,
"detail_picture": "<string>",
"video_url": "<string>"
}
]
}
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Successful Response

id
integer
required

Reels ID

title
string
required

Title

preview_picture
string
required

Preview picture

queue
integer
required

Queue from 1 to n

items
ReelsItemGetResponse · object[]
required