Vidbyte

API documentation

List Projects

List the projects owned by the authenticated principal. This route is useful when your application needs to browse or reconcile the project inventory for an account.

GET
https://vidbyte-backend.onrender.com/api/v1/projects/list

Example request

curl https://vidbyte-backend.onrender.com/api/v1/projects/list \
  -H "x-api-key: vb_live_your_api_key"

Example response

{
  "success": true,
  "data": [
    {
      "id": "proj_Mx1q8Tt2",
      "item_type": "project",
      "title": "Backend observability project",
      "status": "active",
      "createdAt": "2026-04-10T18:00:00",
      "updatedAt": "2026-04-10T18:00:00",
      "project_data": { "generation_status": "project_completed" }
    }
  ]
}