Skip to main content
GET
/
v1
/
projects
/
{projectId}
Get Project
curl --request GET \
  --url https://api.pathors.com/v1/projects/{projectId} \
  --header 'Authorization: <authorization>'
{
  "data": {}
}

Request

GET https://api.pathors.com/v1/projects/{projectId}

Path Parameters

projectId
string
required
The project ID

Headers

Authorization
string
required
Bearer token using your developer key

Response

data
object
The project object

Example

curl https://api.pathors.com/v1/projects/{projectId} \
  -H "Authorization: Bearer dk_your_key"
{
  "data": {
    "id": "project-uuid",
    "name": "My Agent",
    "createdAt": "2026-01-01T00:00:00.000Z",
    "updatedAt": "2026-01-01T00:00:00.000Z"
  }
}