Skip to main content
GET
/
projects
Get Projects
curl --request GET \
  --url https://api.example.com/projects/ \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "status": "<string>",
    "records_count": 123,
    "total_reports_count": 123,
    "created_at": "2023-11-07T05:31:56Z",
    "research_goals": "<string>",
    "interview_guide": "<string>",
    "owner_email": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Successful Response

id
string
required
name
string
required
description
string | null
required
status
string
required
records_count
integer
required
total_reports_count
integer
required
created_at
string<date-time>
required
research_goals
string | null
interview_guide
string | null
owner_email
string | null