API Platform — Early Access

WellX API

Bring ChatGiZa directly into your product. The endpoints below show the shape the public API will follow — they are not open to everyone yet.

Authentication

Every request needs an API key in the Authorization: Bearer header. You'll be able to generate your API key from the account dashboard once it opens.

POST /v1/chat

Send a message to ChatGiZa and get a reply.

curl -X POST https://api.wellx.ai/v1/chat \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "chatgiza-1",
    "messages": [
      { "role": "user", "content": "Hi, what can you help me with?" }
    ]
  }'

Example response:

{
  "id": "msg_01Wx...",
  "model": "chatgiza-1",
  "role": "assistant",
  "content": "Hi! I can help you write, plan, brainstorm, and more."
}

Want early access?

Email hello@wellx.ai to get on the API early access list.