Skip to main content
GET
/
projects
/
{id}
/
export
Export a project
curl --request GET \
  --url https://slog.ai/projects/{id}/export \
  --header 'slog-api-key: <api-key>'
{
  "type": "task",
  "data": {
    "id": "task_01jqabcd1111",
    "title": "Implement OAuth login",
    "status": "TODO"
  },
  "exportedAt": "2026-05-18T12:00:00.000Z"
}

Authorizations

slog-api-key
string
header
required

API key obtained from the Slog dashboard or returned by the signup/invite-redeem flows. Pass as the slog-api-key header.

Path Parameters

id
string
required

Resource ID (UPID) or, for tasks and projects, the human-readable reference such as ENG-42.

Response

Export payload.

type
string

Resource type of the exported record.

Example:

"task"

data
any

Full record data including all nested resources.

Example:
{
"id": "task_01jqabcd1111",
"title": "Implement OAuth login",
"status": "TODO"
}
exportedAt
string<date-time>
Example:

"2026-05-18T12:00:00.000Z"