Accessible, powerful, and easy-to-use APIs for building modern web applications with Llasas.
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.
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"
}
]
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"
}
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"
}
All API requests require a bearer token in the Authorization
header.
Header Format:
Authorization: Bearer YOUR_API_KEY
Sent when no valid API key is provided or when the provided key has been revoked.
Returned when trying to access a non-existent resource like a project ID that doesn't exist.
Occurs during unexpected server errors. Contact support if this happens frequently.
Standard JSON-based endpoints with detailed response examples included in documentation.
Configure event-based notifications for project status changes and system updates.
Our API is powerful, but we're always here to help you get the most out of it.
Explore cURL, JavaScript, and SDK examples on GitHub in our API Samples repository.
View Samples Code →Join our Discord and reach out to developers who've implemented Llasas in production.
Ask in Discord →