API Documentation

Comprehensive reference for all λλn– framework endpoints and integration capabilities.

Authentication

POST /auth/token

{ "client_id": "your_client_id", "secret": "your_secret", "grant_type": "client_credentials" }

Returns Bearer token for API access

Component Registry

GET /components

{ "version": "0.8.2", "components": [ "Button", "Card", "Input" ] }

Project Management

POST /projects

{ "name": "New Project", "framework": "react", "components": ["Card", "Input"] }

Performance Metrics

GET /metrics

{ "response_time": "200ms", "throughput": "2.4k RPS", "error_rate": "0.02%" }

API Usage Example

fetch('https://api.lln.lambda/project/create', { method: 'POST', headers: { 'Authorization': 'Bearer YOUR_TOKEN', 'Content-Type': 'application/json' }, body: JSON.stringify({ name: 'MyProject', components: ['Card', 'Modal'] }) });

Use the authentication token from the /auth endpoint for secure access