Endpoint
Authentication
string
required
Bearer token with your API key. Requires
read or read_write permission.Response
array
List of project objects.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Retrieve all projects for the authenticated user
GET /api/v1/projects
read or read_write permission.Show Project object
"USD", "EUR")curl https://cuprice.io/api/v1/projects \
-H "Authorization: Bearer cpk_your_key_here"
{
"projects": [
{
"id": 42,
"name": "My SaaS App",
"slug": "my-saas-app",
"description": "AI-powered project management tool",
"shareId": "nTZ7axXQHU",
"currency": "USD",
"isActive": true,
"createdAt": "2025-09-15T10:30:00.000Z",
"updatedAt": "2025-11-02T14:22:00.000Z",
"_count": {
"features": 8,
"pricingPlans": 3
}
},
{
"id": 67,
"name": "Design Studio",
"slug": "design-studio",
"description": "Collaborative design platform",
"shareId": "kR4mPwL9vB",
"currency": "EUR",
"isActive": true,
"createdAt": "2025-10-20T08:15:00.000Z",
"updatedAt": "2025-12-01T09:45:00.000Z",
"_count": {
"features": 12,
"pricingPlans": 4
}
}
]
}
