Overview
The List Deliverables endpoint returns all deliverables across all projects for your organization. Each project has a single deliverable that contains the primary output for that project.
Request
Bearer token with your Partner API key
Query Parameters
Filter deliverables for a specific account.
Filter by project type: tax_return, quarterly_estimate, tax_planning, equity_planning.
Filter by status: draft, completed, delivered.
Number of deliverables to return (1-100, default 50).
Number of deliverables to skip for pagination.
Response
Array of deliverable objects, each representing the single deliverable for a project.
Total number of deliverables matching filters.
Whether more deliverables are available for pagination.
Examples
import requests
url = "https://api.fifteenth.com/v1beta/deliverables"
headers = {
"Authorization": "Bearer 15th_your_api_key_here"
}
params = {
"limit": 20,
"status": "completed"
}
response = requests.get(url, headers=headers, params=params)
data = response.json()
print(f"Total Deliverables: {data['total_count']}")
print(f"Showing: {len(data['deliverables'])} deliverables")
for deliverable in data['deliverables']:
print(f"\nProject {deliverable['project_id']}: {deliverable['title']}")
print(f" Account: {deliverable['account_id']}")
print(f" Type: {deliverable['project_type']} - Status: {deliverable['status']}")
print(f" View Link: {deliverable['view_link']}")
Sample Response
{
"deliverables": [
{
"id": 67890,
"project_id": 12345,
"account_id": 98765,
"document_id": 11111,
"project_type": "tax_return",
"title": "2024 Federal Tax Return (Form 1040)",
"status": "completed",
"view_link": "https://app.fifteenth.com/projects/12345/deliverable/67890/view?token=abc123",
"summary": "Your 2024 federal tax return has been completed with a refund of $2,100.",
"prepared_date": "2024-02-10T10:00:00Z",
"expires_at": "2024-08-10T10:00:00Z"
},
{
"id": 22222,
"project_id": 54321,
"account_id": 33333,
"document_id": 44444,
"project_type": "tax_planning",
"title": "2025 Tax Planning Strategy",
"status": "completed",
"view_link": "https://app.fifteenth.com/projects/54321/deliverable/22222/view?token=def456",
"summary": "Strategic tax planning recommendations for 2025 to minimize tax liability.",
"prepared_date": "2024-02-15T10:00:00Z",
"expires_at": "2024-08-15T10:00:00Z"
}
],
"total_count": 2,
"has_more": false
}