API Documentation
Integrate DramaLlama's powerful HR management capabilities into your existing systems with our comprehensive REST API.
Getting Started
Everything you need to start integrating with the DramaLlama API.
Sign up for a DramaLlama account and generate your API key from the settings panel.
Get API KeyExplore our comprehensive API documentation with examples and best practices.
Use our SDKs and code examples to quickly integrate DramaLlama into your application.
API Endpoints
Core endpoints for managing HR data and operations.
GET
/api/v1/staff
Retrieve all staff members
Required
POST
/api/v1/staff
Create a new staff member
Required
GET
/api/v1/supervisions
Get supervision records
Required
POST
/api/v1/supervisions
Create supervision record
Required
GET
/api/v1/appraisals
Retrieve appraisal data
Required
Quick Example
Get started with a simple API call to retrieve staff data.
Fetch Staff Members
// Using JavaScript/Node.js
const response = await fetch('https://api.dramallama.com/v1/staff', {
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
}
});
const staff = await response.json();
console.log(staff);
Need Help?
Our developer support team is here to help you integrate successfully.
Full Documentation
Complete API reference with detailed examples and guides.