1. Get Your API Key

Create an API key from Settings > API Keys in the Geoff dashboard.
export GEOFF_API_KEY="your-api-key-here"

2. Make Your First Request

curl --request POST \
  --url https://geoff.ai/api/v1/text/chat \
  --header "Authorization: Bearer $GEOFF_API_KEY" \
  --header 'Content-Type: application/json' \
  --data '{
    "model": "magma",
    "messages": [
      {"role": "user", "content": "What is Geoff?"}
    ]
  }'

3. Explore the API

Check out the full API Reference to discover all available endpoints for text, speech, video, image, music, and file management.