Get Reels list
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>"
}
]
}
]Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful Response
Reels ID
Title
Preview picture
Queue from 1 to n
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>"
}
]
}
]