api_creators_me_retrieve
GET
/api/creators/me/
const url = 'https://example.com/api/creators/me/';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/me/ \ --header 'Authorization: <Authorization>'获取当前用户的创建者信息
媒体类型application/json
object
id
必填
string format: uuid
email
必填
string format: email
display_name
必填
string
plan
free- 免费版pro- 专业版enterprise- 企业版
string
credits
integer
created_at
必填
string format: date-time
updated_at
必填
string format: date-time
示例
{ "plan": "free"}