Skip to main content
Returns all projects belonging to the authenticated user, including feature and plan counts.

Endpoint

GET /api/v1/projects

Authentication

Authorization
string
required
Bearer token with your API key. Requires read or read_write permission.

Response

projects
array
List of project objects.

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
      }
    }
  ]
}