api_creators_list
GET
/api/creators/
const url = 'https://example.com/api/creators/';const options = {method: 'GET', headers: {Authorization: '<Authorization>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/creators/ \ --header 'Authorization: <Authorization>'Manage creators.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Media typeapplication/json
Array<object>
object
id
required
string format: uuid
email
required
string format: email
display_name
required
string
plan
free- Freepro- Proenterprise- Enterprise
string
credits
integer
created_at
required
string format: date-time
updated_at
required
string format: date-time
Example
[ { "plan": "free" }]