Skip to main content
GET
/
projects
curl --location 'https://api.withblast.com/projects' \
--header 'Authorization: Bearer YOUR_JWT_TOKEN'
{
  "projects": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "name": "Customer Support Chatbot",
      "created_at": "2024-01-15T10:30:00Z"
    },
    {
      "id": "660f9511-f3ac-52e5-bcde-557766551111",
      "name": "Sales Assistant AI",
      "created_at": "2024-01-20T14:45:00Z"
    },
    {
      "id": "770fa622-a4bd-63f6-cdef-668877662222",
      "name": "Product Recommendation Engine",
      "created_at": "2024-02-01T09:00:00Z"
    }
  ]
}

Authentication

Authorization
string
required
Bearer token

Response

projects
array
required
Array of project objects
curl --location 'https://api.withblast.com/projects' \
--header 'Authorization: Bearer YOUR_JWT_TOKEN'
{
  "projects": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "name": "Customer Support Chatbot",
      "created_at": "2024-01-15T10:30:00Z"
    },
    {
      "id": "660f9511-f3ac-52e5-bcde-557766551111",
      "name": "Sales Assistant AI",
      "created_at": "2024-01-20T14:45:00Z"
    },
    {
      "id": "770fa622-a4bd-63f6-cdef-668877662222",
      "name": "Product Recommendation Engine",
      "created_at": "2024-02-01T09:00:00Z"
    }
  ]
}

Notes

  • Returns all projects accessible by the authenticated organization
  • Projects are determined by the organization ID in your JWT token
  • No pagination is currently implemented for this endpoint