Documentation

1. Quickstart

Get up and running with the iSpeed AI Platform in less than 5 minutes.

Step 1: Create an API Key

Head over to the Console and generate a new API key under the "API Keys" section.

Code Examples

curl https://api.ispeedhost.net/v1/chat/completions \
  -H "Authorization: Bearer $ISPEED_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "llama-3-70b",
    "messages": [{"role": "user", "content": "How do I use this API?"}]
  }'

File Storage (MinIO Flow)

To process large files (images, audio), upload them to our transient storage first.

  1. 1. Request a Signed URL via our /v1/storage/upload endpoint.
  2. 2. PUT your file to the provided URL.
  3. 3. Use the returned file_id in your inference request.

2. API Reference

Our gateway is fully OpenAPI 3.0 compliant. You can download the spec or explore it interactively.

OpenAPI Renderer Placeholder

SwaggerUI or Redoc will be integrated here.