Skip to main content
GET
/
pages
List pages
curl --request GET \
  --url https://api.neuraldraft.io/v1/pages \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 42,
      "slug": "about",
      "title": "About us",
      "type": "landing",
      "is_homepage": false,
      "is_active": true,
      "exclude_from_search": false,
      "meta_title": "About — Acme",
      "meta_description": "<string>",
      "og_title": "<string>",
      "og_description": "<string>",
      "og_image": "<string>",
      "canonical_url": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "meta": {
    "page": 123,
    "page_size": 123,
    "total": 123,
    "last_page": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.neuraldraft.io/llms.txt

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

Authorizations

Authorization
string
header
required

Project API key. Pass as Authorization: Bearer ndsk_live_.... Manage keys via /projects/me/api-keys. Test-mode keys use the ndsk_test_ prefix.

Query Parameters

type
enum<string>
Available options:
landing,
blog_list,
blog_post,
legal
is_active
boolean
page
integer
default:1
Required range: x >= 1
page_size
integer
default:20
Required range: 1 <= x <= 100

Response

OK

data
object[]
meta
object