Wakato Docs
API Reference

Assets

GET
/assets/voices

Authorization

bearerAuth
AuthorizationBearer <token>

A Space API key, e.g. wks_live_….

In: header

Response Body

application/json

curl -X GET "https://example.com/assets/voices"
{}
GET
/assets/documents

Authorization

bearerAuth
AuthorizationBearer <token>

A Space API key, e.g. wks_live_….

In: header

Response Body

application/json

curl -X GET "https://example.com/assets/documents"
{}
GET
/assets/characters

Authorization

bearerAuth
AuthorizationBearer <token>

A Space API key, e.g. wks_live_….

In: header

Response Body

application/json

curl -X GET "https://example.com/assets/characters"
{}
POST
/assets/characters

Authorization

bearerAuth
AuthorizationBearer <token>

A Space API key, e.g. wks_live_….

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/assets/characters" \  -H "Content-Type: application/json" \  -d '{    "name": "string"  }'
{}
PATCH
/assets/characters/{id}

Authorization

bearerAuth
AuthorizationBearer <token>

A Space API key, e.g. wks_live_….

In: header

Path Parameters

id*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X PATCH "https://example.com/assets/characters/string" \  -H "Content-Type: application/json" \  -d '{}'
{}