Skip to main content
Reference guide for Lindo.ai API endpoints.

Authentication

All requests require Bearer token:
Authorization: Bearer YOUR_API_KEY

Base URL

https://api.lindo.ai/v1

Endpoints

Websites

MethodEndpointDescription
GET/websitesList all websites
GET/websites/:idGet website details
POST/websitesCreate website
DELETE/websites/:idDelete website

Clients

MethodEndpointDescription
GET/clientsList all clients
GET/clients/:idGet client details
POST/clientsCreate client
PUT/clients/:idUpdate client
DELETE/clients/:idDelete client

Response Format

Successful responses:
{
  "success": true,
  "data": { ... }
}
Error responses:
{
  "success": false,
  "error": {
    "code": "ERROR_CODE",
    "message": "Error description"
  }
}

Rate Limits

  • 100 requests per minute
  • 429 status when exceeded
  • Implement exponential backoff

Full Documentation

For complete API documentation, visit the API Docs link in Settings → API.