> ## Documentation Index
> Fetch the complete documentation index at: https://okl-ink.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Page

> Fetch full project details including ordered links, theme config, and security status.

# Get Page

Retrieves the complete data model for an owned page. Requires `pages:read` scope.

### Headers

<ParamField header="Authorization" type="string" required>
  Bearer token with `pages:read` scope.
</ParamField>

### Path Parameters

<ParamField path="id" type="string" required>
  The unique project ID.
</ParamField>

### Response

<ResponseField name="project" type="object">
  Project metadata, theme, and publication state.
</ResponseField>

<ResponseField name="links" type="array">
  Ordered list of link tiles.
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl https://okl.ink/api/v1/pages/cly1019283749 \
    -H "Authorization: Bearer YOUR_API_TOKEN"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "project": {
      "id": "cly1019283749",
      "slug": "my-project-hub",
      "title": "My Project Hub",
      "description": "Essential links, repository, and live demo.",
      "coverImage": null,
      "name": "Alex",
      "published": true,
      "passwordProtected": false,
      "blocked": false,
      "theme": {
        "preset": "oklink",
        "density": "comfortable",
        "radius": "rounded"
      }
    },
    "links": [
      {
        "id": "link_123",
        "type": "github",
        "url": "https://github.com/hebuildapps/demo-links",
        "position": 0,
        "title": "Source Code",
        "size": "2x1",
        "thumbnail": null,
        "active": true,
        "highlighted": false,
        "clicks": 42
      }
    ]
  }
  ```
</ResponseExample>
