API Documentation
Integrate WORMGPT into your workflows.
Endpoint
POST https://wormgpt.cx/api/v1/chat
Content-Type: application/json
Authorization: Bearer <your_key>
{
"model": "venice",
"messages": [
{"role": "user", "content": "..."}
],
"max_tokens": 2048
}
Response
{
"content": "AI response text...",
"tokens_in": 12,
"tokens_out": 156
}