Characters
GET
/api/characters
const url = 'https://example.com/api/characters';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
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/characters \ --header 'Authorization: Bearer <token>'List registered characters with their LoRAs, triggers, and voices (those the caller may use).
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Response Characters Api Characters Get
object
key
additional properties
any
Examplegenerated
{}