Returns all projects belonging to the authenticated user, including feature and plan counts.
Endpoint
Authentication
Bearer token with your API key. Requires read or read_write permission.
Response
List of project objects.
URL-friendly project identifier
Short project description
Public share identifier used for the embed widget
Currency code (e.g. "USD", "EUR")
Whether the project is active
ISO 8601 creation timestamp
ISO 8601 last-updated timestamp
Aggregate counts for related resources
Number of features in the project
Number of pricing plans in the project
Example
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
}
}
]
}