Skip to content

List Content Creators

GET
/admin/content-creators
curl --request GET \
--url 'http://localhost:9000/admin/content-creators?limit=15&offset=0'
limit
integer
default: 15
offset
integer
0
order
string
fields
string
q
string

OK

Media type application/json
object
content-creators
Array<object>
object
id
string
name
string
bio
string
avatar_url
string
metadata
object
key
additional properties
any
created_at
string format: date-time
updated_at
string format: date-time
count
integer
limit
integer
offset
integer
Example generated
{
"content-creators": [
{
"id": "example",
"name": "example",
"bio": "example",
"avatar_url": "example",
"metadata": {},
"created_at": "2026-04-15T12:00:00Z",
"updated_at": "2026-04-15T12:00:00Z"
}
],
"count": 1,
"limit": 1,
"offset": 1
}