Skip to main content
The Humalike API lets your application send a prompt and receive a generated response over a single HTTPS request. It is a small, predictable JSON API: authenticate with a bearer token, POST a prompt, and read back the response.

Base URL

All requests go to:
https://api.humalike.com
Every request must be made over HTTPS. Plain HTTP is not supported.

What you can do

Authenticate

Send your bearer token on every request.

Ask

Submit a prompt and get a response.

Quickstart

Make your first request in a couple of minutes.

Errors

Understand status codes and the error envelope.

Conventions

  • Requests and responses are JSON (Content-Type: application/json).
  • Authentication uses the Authorization: Bearer <token> header.
  • Successful responses use 2xx status codes; failures use 4xx/5xx with a consistent error envelope.