Llasas

Llasas API Documentation

Accessible, powerful, and easy-to-use APIs for building modern web applications with Llasas.

Getting Started

To begin using the Llasas API, you'll need an API key. You can generate one through your account settings or contact support.

const apiKey = 'your_api_key_here';

fetch('https://api.llasasas.com/v1/projects', {
  headers: {
    'Authorization': `Bearer ${apiKey}`,
    'Content-Type': 'application/json'
  }
})
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error(error));

* Replace 'your_api_key_here' with your actual API key.

Core Endpoints

GET /v1/projects

Retrieve a list of all projects associated with your account.

GET https://api.llasasas.com/v1/projects
Authorization: Bearer YOUR_API_KEY
[
  {
    "id": "project-1234",
    "name": "My App",
    "created_at": "2025-09-29T14:23:48Z"
  }
]

POST /v1/projects

Create a new project.

POST https://api.llasasas.com/v1/projects
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{
  "name": "New Project",
  "region": "us-west"
}
{
  "id": "project-5678",
  "name": "New Project",
  "region": "us-west",
  "created_at": "2025-09-29T14:25:12Z"
}

PATCH /v1/projects/{id}

Update an existing project configuration.

PATCH https://api.llasasas.com/v1/projects/project-1234
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{
  "name": "Updated Name"
}
{
  "id": "project-1234",
  "name": "Updated Name",
  "updated_at": "2025-09-29T14:27:55Z"
}

Authentication

All API requests require a bearer token in the Authorization header.

Header Format:

Authorization: Bearer YOUR_API_KEY

Error Responses

401 Unauthorized

Sent when no valid API key is provided or when the provided key has been revoked.

404 Not Found

Returned when trying to access a non-existent resource like a project ID that doesn't exist.

500 Internal Server Error

Occurs during unexpected server errors. Contact support if this happens frequently.

Integrate Llasas into Your Workflow

REST API Support

Standard JSON-based endpoints with detailed response examples included in documentation.

Webhooks

Configure event-based notifications for project status changes and system updates.

Need Help?

Our API is powerful, but we're always here to help you get the most out of it.

View API Examples

Explore cURL, JavaScript, and SDK examples on GitHub in our API Samples repository.

View Samples Code →

Ask Questions

Join our Discord and reach out to developers who've implemented Llasas in production.

Ask in Discord →