Skip to main content
POST
/
v1
/
ai
/
workspace
/
website
/
batch
Create multiple websites with AI (batch, max 25)
curl --request POST \
  --url https://api.lindo.ai/v1/ai/workspace/website/batch \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "items": [
    {
      "prompt": "<string>",
      "schedule_at": "<string>",
      "client": {
        "client_id": "<string>",
        "email": "[email protected]",
        "name": "<string>"
      }
    }
  ]
}
'
{
  "success": true,
  "total": 123,
  "succeeded": 123,
  "failed": 123,
  "items": [
    {
      "success": true,
      "record_id": "<string>",
      "instance_id": "<string>",
      "status_url": "<string>",
      "error": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://lindo.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Enter your API key (starts with lindo_sk_)

Body

application/json
items
object[]
required

Array of websites to create. Between 1 and 25 items.

Required array length: 1 - 25 elements

Response

Batch processed. Check per-item success.

success
enum<boolean>
required

The batch request was processed. Individual items may still have failed — check per-item success.

Available options:
true
total
number
required

Total items in the batch

succeeded
number
required

Number of items successfully accepted

failed
number
required

Number of items that failed to start

items
object[]
required

Per-item result, in the same order as the request