Skip to main content
GET
/
v1
/
projects
Get a list of projects
curl --request GET \
  --url https://api.honeyhive.ai/v1/projects \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "org_id": "<string>",
    "description": "<string>",
    "type": "evaluation",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
]

Authorizations

Authorization
string
header
required

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

Query Parameters

name
string

Filter projects by name

Response

200 - application/json

A list of projects

id
string
required
Minimum string length: 1
name
string
required

Project name

Minimum string length: 1
org_id
string
required

Organization ID

description
string

Project description

type
enum<string>

Project type

Available options:
evaluation,
completion
created_at
string<date-time>
updated_at
string<date-time>
{key}
any