BeefAPI

Key. Base URL.
First response.

Create a key in the BeefAPI console, keep it on your server, then use the OpenAI-compatible client you already know.

THREE STEPS · ONE BASE URL · STANDARD JSON

QUICKSTART

BEEFAPI
FIRST REQUEST
01Register or sign inCONSOLE
02Create an API keyPRIVATE
03Send the requestJSON
curl https://global.beefapi.com/v1/chat/completions \
  -H "Authorization: Bearer $BEEFAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"gpt-5.5","messages":[{"role":"user","content":"Hello"}]}'
BASE URL
https://global.beefapi.com/v1
OPEN CONSOLE