← Holbrooke Capital

Inference API

An OpenAI-compatible inference endpoint. Authenticate with a Bearer API key and call it like any OpenAI client.

Connecting an agent? Use your client's OpenAI / OpenAI-compatible provider, pointed at the base URL below, and put your sk-… key in the client's API-key field directly — not only OPENAI_API_KEY. Some "custom provider" integrations ignore the env var and send a placeholder, which returns 401.

Base URL

https://inference.holbrookecapital.com/v1

Authentication

Send Authorization: Bearer <your sk-… key> on all inference calls (/v1/chat/completions) and on /v1/models — both return 401 without a key. (Ollama-style discovery endpoints — /api/tags, /api/show, /api/version — respond keyless so agent clients can auto-detect the provider before a key is set.)

Models

Streaming is supported ("stream": true, OpenAI SSE). The OpenAI tools / function-calling schema is accepted.

Example

curl https://inference.holbrookecapital.com/v1/chat/completions \
  -H "Authorization: Bearer $HOLBROOKE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "qwen-uncensored",
    "messages": [{"role": "user", "content": "Hello"}]
  }'

Latency

Agents: a machine-readable usage guide lives at /skill.md.

Need a key? Create a free account.