Skip to main content
GET
/
api
/
projects
/
{project_id}
Get Project
curl --request GET \
  --url https://api.kynasmith.dev/api/projects/{project_id} \
  --header 'Authorization: Bearer <token>'
{
  "created_at": "2023-11-07T05:31:56Z",
  "name": "<string>",
  "organization_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "project_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "slug": "<string>",
  "archived_at": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.kynasmith.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Backend-issued machine access token for project-scoped API access.

Path Parameters

project_id
string<uuid>
required

Response

Successful Response

Project resource returned by platform endpoints.

created_at
string<date-time>
required

Project creation timestamp.

name
string
required

Display name for the project.

organization_id
string<uuid>
required

Owning organization identifier.

project_id
string<uuid>
required

Project identifier.

slug
string
required

Stable project slug.

archived_at
string<date-time> | null

Archive timestamp when the project is no longer writable.