latestOpenAPI 3.1.02026-08-08243131.9 MB

c5ddcd5c7e72

Get media from a creator's chat

Returns a cursor-paginated list of media items shared between the specified creator and user. Media is extracted from chat messages and ordered by date (newest first).

Pagination Flow:

  • First request: Omit the cursor parameter, returns first 20 media items (or specified limit)
  • Subsequent requests: Use the nextCursor from the previous response
  • End of results: nextCursor will be null
{
  "data": [...media items...],
  "nextCursor": "..." // Pass this to the next request to get the following page
}
get/creators/{creatorUserUuid}/chats/{userUuid}/media

Path parameters

creatorUserUuidstring uuid required
userUuidstring uuid required

Query parameters

cursorstring

Cursor for fetching the next page of media

Cursor for fetching the next page of media

mediaType'image' | 'video' | 'audio' | 'document'

Filter by media type (image, video, audio, document)

Filter by media type (image, video, audio, document)

limitnumber

Number of media items to return (1-50, default: 20)

Number of media items to return (1-50, default: 20)

Headers

X-Fanvue-API-Versionstring required
Example:2025-06-26

API version to use for the request

Response

Cursor-paginated list of media items

nextCursorstring nullable required

Cursor for fetching the next page, null if no more results