Keep crew, contractors, and clients in one workspace-wide directory.
Link contacts to budget lines for automatic contact assignment.
Store tax info and rate cards for quick reuse across projects.
⚒️ API Reference (1.0.0)
The Saturation API lets you work with your workspace data including projects, budgets, actuals, contacts, purchase orders, and attachments.
It is built for real-time collaboration and automation so you can connect it to your internal tools or third-party systems. Any changes you make through the API appear instantly in the web app.
With it, you can:
- Create, update, and organize projects and phases
- Build and track multi-phase budgets
- Sync actuals and purchase orders
- Manage contacts and crew
- Upload, retrieve, and organize attachments
🔑 Authentication
GET /api/v1/projects
X-API-Key: YOUR_API_KEY
📊 Get everything in one call
GET /projects/my-film/budget?expands[]=phases&expands[]=fringes&expands[]=lines.contact&expands[]=lines.phaseData
Returns the complete budget with all related records, no extra roundtrips.
🏷️ Use your existing codes
GET /projects/my-film/budget/line/1100-LABOR # Your account code
GET /projects/my-film/budget/phases/estimate # Your phase name
POST /projects/my-film/actuals # Create with your codes
{
"lineItemId": "2150-CAMERA",
"amount": 5000
}
The API speaks your language. Use the same codes from your accounting system.
🔄 Common patterns
# Get recent actuals with full details
GET /projects/my-film/actuals?date=2024-03-14&expands[]=contact&expands[]=attachments
# Create a purchase order
POST /projects/my-film/purchase-orders
{
"number": "PO-001",
"contactId": "contact-123",
"items": [{"lineItemId": "2150", "amount": 35000}]
}
# Export complete budget for accounting
GET /projects/my-film/budget?expands[]=phases&expands[]=fringes&expands[]=globals
đź’ˇ Pro tips
- Create multiple budget lines in one POST to
/budget
- Use tags liberally—they're your flexible second dimension
- Combine
accountId
,tags
, anddate
filters for precise queries
https://api.saturation.io/api/v1/
Budget
Build hierarchical budgets with accounts, line items, subtotals, and markups.
Use expands[]=phases&expands[]=fringes&expands[]=globals&expands[]=lines.contact&expands[]=lines.phaseData
to fetch complete budget data in one call.
Reference budget lines by account code (e.g., "1100-LABOR"
) with idMode=user
.
Filter by phase ID(s)
Include hidden phases in the response
Filter budget by tag names (can be single tag or array of tags)
How to apply the tag filter
Include related data in the response
ID interpretation mode. Controls how path and query parameter IDs (like lineId, accountId, phaseId) are interpreted - 'user' for human-readable IDs (account codes, phase names), 'system' for database IDs (UUIDs/nanoids). Also affects the format of IDs in responses.
- Production server
https://api.saturation.io/api/v1/projects/{projectId}/budget
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.saturation.io/api/v1/projects/nike-spring-2024/budget?accountId=2150&phaseId=estimate%2Cactual&includeHiddenPhases=true&tags=Marketing%2CEngineering&tagFilterMode=contains&expands=phases%2Clines.contact&idMode=user' \
-H 'X-API-Key: YOUR_API_KEY_HERE'
Budget information
Budget lines within this account
Type of budget line
Account identifier (user-friendly ID like account code)
Budget line description
Hierarchical path in budget tree (e.g., /2000/2150)
Calculated totals for each phase
Tags for categorization and filtering
Calculated totals for each phase
{ "account": { "id": "acc-xyz-789", "accountId": "2150", "description": "Camera Equipment", "path": "/production/equipment", "lines": [ … ], "totals": { … }, "contact": { … } }, "subAccounts": { "property1": { … }, "property2": { … } }, "phases": [ { … } ], "fringes": [ { … } ], "globals": [ { … } ] }
Request
Add new budget lines to an existing account within the budget hierarchy.
This endpoint creates line items, sub-accounts, subtotals, or markups at the specified location in your budget structure. The target account must already exist in the budget hierarchy.
Use accountId: "root"
to add lines at the top level of your budget.
Target account ID or account code where lines will be added. Use "root" for top-level budget. The account must already exist in the budget hierarchy.
- Production server
https://api.saturation.io/api/v1/projects/{projectId}/budget
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.saturation.io/api/v1/projects/nike-spring-2024/budget \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-d '{
"accountId": "root",
"lines": [
{
"type": "account",
"accountId": "1000",
"description": "Above-the-Line"
},
{
"type": "account",
"accountId": "2000",
"description": "Below-the-Line"
}
]
}'
Budget lines created successfully
Budget lines within this account
Type of budget line
Account identifier (user-friendly ID like account code)
Budget line description
Hierarchical path in budget tree (e.g., /2000/2150)
Calculated totals for each phase
Tags for categorization and filtering
Calculated totals for each phase
{ "account": { "id": "acc-xyz-789", "accountId": "2150", "description": "Camera Equipment", "path": "/production/equipment", "lines": [ … ], "totals": { … }, "contact": { … } }, "subAccounts": { "property1": { … }, "property2": { … } }, "phases": [ { … } ], "fringes": [ { … } ], "globals": [ { … } ] }
Filter budget line by tag names (can be single tag or array of tags)
How to apply the tag filter
Include related data in the response
ID interpretation mode. Controls how path and query parameter IDs (like lineId, accountId, phaseId) are interpreted - 'user' for human-readable IDs (account codes, phase names), 'system' for database IDs (UUIDs/nanoids). Also affects the format of IDs in responses.
- Production server
https://api.saturation.io/api/v1/projects/{projectId}/budget/line/{lineId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.saturation.io/api/v1/projects/nike-spring-2024/budget/line/{lineId}?tags=Marketing%2CEngineering&tagFilterMode=contains&expands=contact%2CphaseData&idMode=user' \
-H 'X-API-Key: YOUR_API_KEY_HERE'
Budget line details
Type of budget line
Hierarchical path in budget tree (e.g., /2000/2150)
Calculated totals for each phase
{ "type": "line", "id": "line-001", "accountId": "2150", "description": "RED Camera Package Rental", "path": "/production/equipment/cameras", "totals": { "estimate": 25000, "actual": 22500, "variance": 2500 }, "tags": [ "Day-1", "A-Camera", "Equipment" ], "contact": { "id": "contact-studio-001", "contactTitle": "Sunset Studios - Production Company", "name": "Alex Rivera", "email": "alex.rivera@sunsetstudios.com", "company": "Sunset Studios Inc.", "type": "Person", "jobTitle": "Director of Photography", "rate": 150, "secureInfo": { … }, "origin": { … }, "startwork": [ … ], "linkedUser": { … }, "bankInfo": [ … ], "taxDocuments": [ … ], "attachments": [ … ], "projects": { … } }, "phaseData": { "property1": { … }, "property2": { … } } }
CommentsCopy for LLM Copy page as Markdown for LLMs View as Markdown Open this page as Markdown Open in ChatGPT Get insights from ChatGPT Open in Claude Get insights from Claude
Add notes and discussions directly on budget lines.
Track approvals and changes with timestamps—context stays intact across phases.