POST
MCP JSON-RPC entry point
curl --request POST \
  --url https://api.talkzilla.app/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "jsonrpc": "2.0",
  "method": "<string>",
  "id": "<string>",
  "params": {}
}
'
{
  "jsonrpc": "2.0",
  "id": "<string>",
  "result": {},
  "error": {
    "code": 123,
    "message": "<string>",
    "data": {}
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
jsonrpc
enum<string>
required
Available options:
2.0
method
string
required
id
params
object

Response

JSON-RPC response (success or error envelope).

jsonrpc
enum<string>
Available options:
2.0
id
result
object
error
object