Documentation

Make your first API request in a few minutes.

Before you begin, make sure these three requirements are ready.

{
  "text": "Complex source content in the selected language.",
  "locale": "en",
  "mode": "simple-language"
}

SDK and cURL examples available

Prerequisites

  • An active Scale plan
  • An API key
  • cURL, JavaScript, PHP, or Python. We provide examples for all four.

Step 1: Set the key

bash
export SIMPLE8_API_KEY="replace-with-your-live-key"
export SIMPLE8_API_BASE_URL="https://api.simple8.de"

Step 2: Send the request

The public Version 2 API provides:

  • POST /api/v2/translate
  • POST /api/v2/translate/stream
  • POST /api/v2/jobs
  • GET /api/v2/jobs/{id}
  • POST /api/v2/batches
  • GET /api/v2/batches/{id}

Use https://api.simple8.de in production. Send the API key as a Bearer token from your server.

cURL
curl --request POST \
  --url "$SIMPLE8_API_BASE_URL/api/v2/translate" \
  --header "Authorization: Bearer $SIMPLE8_API_KEY" \
  --header "Content-Type: application/json" \
  --data '{
    "text": "To complete the application, submit a valid identity document.",
    "locale": "en",
    "mode": "simple-language"
  }'

Step 3: Inspect the response

json
{
  "requestId": "req_sync_001",
  "locale": "en",
  "mode": "simple-language",
  "output": "Send a valid identity document with your application.",
  "usage": {
    "inputCharacters": 67,
    "cacheHit": false
  }
}

Step 4: Try the second mode

Plain Language and Easy Language are different product modes. Choose the mode that fits the people you want to reach.

json
{
  "text": "To complete the application, submit a valid identity document.",
  "locale": "en",
  "mode": "easy-language"
}

Next steps

  • View all supported locale codes
  • Compare delivery patterns
  • Read authentication guidance
  • Process larger volumes with background jobs and batch requests
  • Configure a webhook endpoint in the application
  • Review cache, usage, and billing behavior

Start using Simple8 for free.

Create your free account and use up to 15,000 characters free every month.