Skip to main content
GET
/
projects
/
{id}
Get project details
curl --request GET \
  --url https://api.specular.dev/projects/{id} \
  --header 'Authorization: Bearer <token>'
{
  "project": {
    "id": "<string>",
    "name": "<string>",
    "state": "creating",
    "productionUrl": "<string>",
    "openApiSpec": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication with API key (format: Bearer sk_xxx)

Path Parameters

id
string
required

Project ID

Response

Project details

Project details

project
object