Retrieves a specific favorite meme by ID.
curl --request GET \
--url https://api.fluxer.app/v1/users/@me/memes/{meme_id} \
--header 'Authorization: <api-key>'{
"id": "<string>",
"user_id": "<string>",
"name": "<string>",
"tags": [
"<string>"
],
"attachment_id": "<string>",
"filename": "<string>",
"content_type": "<string>",
"size": 123,
"url": "<string>",
"alt_text": "<string>",
"content_hash": "<string>",
"width": 123,
"height": 123,
"duration": 123,
"is_gifv": true,
"klipy_slug": "<string>",
"tenor_slug_id": "<string>"
}Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.
The meme id
Success
Unique identifier for the favorite meme
ID of the user who owns this favorite meme
Display name of the meme
Tags for categorizing and searching the meme
ID of the attachment storing the meme
Original filename of the meme
MIME type of the meme file
File size in bytes
CDN URL to access the meme
Alternative text description for accessibility
Hash of the file content for deduplication
Width of the image or video in pixels
Height of the image or video in pixels
Duration of the video in seconds
Whether the meme is a video converted from GIF
Klipy clip slug if the meme was sourced from Klipy
Tenor view/
curl --request GET \
--url https://api.fluxer.app/v1/users/@me/memes/{meme_id} \
--header 'Authorization: <api-key>'{
"id": "<string>",
"user_id": "<string>",
"name": "<string>",
"tags": [
"<string>"
],
"attachment_id": "<string>",
"filename": "<string>",
"content_type": "<string>",
"size": 123,
"url": "<string>",
"alt_text": "<string>",
"content_hash": "<string>",
"width": 123,
"height": 123,
"duration": 123,
"is_gifv": true,
"klipy_slug": "<string>",
"tenor_slug_id": "<string>"
}