- AI Avatar API
- Get Tokens
- TTS and Voice Clone
- Generate Avatar Videos
- Create Avatars and Train Lip-sync Models
- Background Matting and Replacement
- Face Swap
- AI Dubbing
- Image to Video
- Caption Removal
- Streaming Avatar
- Miscellaneous
List api tokens
Deprecated
Global Server
Global Server
GET
/api/v1/token/list
login token
(not the API token
) as Bearer token in the Authorization HeaderRequest
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://video.a2e.ai/api/v1/token/list'
Responses
🟢200list
application/json
Body
code
integerÂ
required
data
array [object {7}]Â
required
alias
stringÂ
required
status
stringÂ
required
_id
stringÂ
required
name
stringÂ
required
createdAt
stringÂ
required
updatedAt
stringÂ
required
__v
integerÂ
required
Example
{
"code": 0,
"data": [
{
"alias": "test2",
"status": "enabled",
"_id": "652ccfef12a3fa55eda13d8b",
"name": "1234568@gmail.com",
"createdAt": "2023-10-16T05:53:51.398Z",
"updatedAt": "2023-10-16T05:53:51.398Z",
"__v": 0
},
{
"alias": "test3",
"status": "enabled",
"_id": "652e3997e12c7facc2ba9914",
"name": "1234568@gmail.com",
"createdAt": "2023-10-17T07:36:55.498Z",
"updatedAt": "2023-10-17T07:36:55.498Z",
"__v": 0
}
]
}
Modified at 2025-01-12 05:49:42