Skip to content

Listing

GET
/api/listing
curl --request GET \
--url 'https://example.com/api/listing?offset=0&limit=60&type=&q=&character_id=&tag=&training_dataset=&owner=' \
--header 'Authorization: Bearer <token>'

List generated media from the media table.

This is the source-of-truth catalog for all images and videos managed by FlixML Studio. Filters are applied in the database and support pagination, type filtering, free-text search, character/tag scoping, training dataset selection, and the account that submitted the job.

owner narrows the result to one account; it never widens it. A key that only sees what it owns stays scoped to itself whatever it asks for.

offset
Offset
integer
0
limit
Limit
integer
default: 60
type
Type
string
""
q
Q
string
""
character_id
Character Id
string
""
tag
Tag
string
""
training_dataset
Training Dataset
string
""
owner
Owner
string
""

Successful Response

Media typeapplication/json
Response Listing Api Listing Get
object
key
additional properties
any
Examplegenerated
{}

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example"
}
]
}