> For the complete documentation index, see [llms.txt](https://docs.jetadmin.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.jetadmin.io/api-reference/application-api/pages-api.md).

# Pages

In this section you will learn how to use Pages API

## GET /projects/{PROJECT\_NAME}/{ENV\_NAME}/view\_settings/

> Get pages settings

```json
{"openapi":"3.0.3","info":{"title":"Jet Admin API","version":"2026-09-15"},"tags":[{"name":"pages"}],"servers":[{"url":"https://api.jetadmin.io/api","description":"Production"}],"security":[{"bearerAuth":[]}],"components":{"securitySchemes":{"bearerAuth":{"type":"http","scheme":"bearer","description":"API key from Profile → API Keys."}},"schemas":{"PageSettings":{"type":"object","additionalProperties":true,"description":"Page configuration returned by Jet Admin. Fields vary with the configured page; see the response examples."}}},"paths":{"/projects/{PROJECT_NAME}/{ENV_NAME}/view_settings/":{"get":{"summary":"Get pages settings","operationId":"getPagesSettings","tags":["pages"],"parameters":[{"name":"PROJECT_NAME","in":"path","required":true,"description":"Unique project name (can be taken from Jet Admin project URL)","schema":{"type":"string"}},{"name":"ENV_NAME","in":"path","required":true,"description":"Unique environment name (can be taken from Jet Admin project URL)","schema":{"type":"string"}},{"name":"draft","in":"query","required":false,"description":"1 or 0, default is 0","schema":{"type":"string","enum":["0","1"],"default":"0"}}],"responses":{"200":{"description":"200: OK","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/PageSettings"}}}}}}}}}}
```

## POST /projects/{PROJECT\_NAME}/{ENV\_NAME}/view\_settings/

> Create page settings

```json
{"openapi":"3.0.3","info":{"title":"Jet Admin API","version":"2026-09-15"},"tags":[{"name":"pages"}],"servers":[{"url":"https://api.jetadmin.io/api","description":"Production"}],"security":[{"bearerAuth":[]}],"components":{"securitySchemes":{"bearerAuth":{"type":"http","scheme":"bearer","description":"API key from Profile → API Keys."}},"schemas":{"PageSettings":{"type":"object","additionalProperties":true,"description":"Page configuration returned by Jet Admin. Fields vary with the configured page; see the response examples."}}},"paths":{"/projects/{PROJECT_NAME}/{ENV_NAME}/view_settings/":{"post":{"summary":"Create page settings","operationId":"createPageSettings","tags":["pages"],"parameters":[{"name":"PROJECT_NAME","in":"path","required":true,"description":"Unique project name (can be taken from Jet Admin project URL)","schema":{"type":"string"}},{"name":"ENV_NAME","in":"path","required":true,"description":"Unique environment name (can be taken from Jet Admin project URL)","schema":{"type":"string"}},{"name":"draft","in":"query","required":false,"description":"1 or 0, default is 0","schema":{"type":"string","enum":["0","1"],"default":"0"}}],"responses":{"201":{"description":"201: Created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PageSettings"}}}}},"requestBody":{"description":"The source documentation does not specify the create-request fields.","content":{"application/json":{"schema":{"type":"object","additionalProperties":true}}}}}}}}
```

## GET /projects/{PROJECT\_NAME}/{ENV\_NAME}/view\_settings/{UID}/

> Get page settings

```json
{"openapi":"3.0.3","info":{"title":"Jet Admin API","version":"2026-09-15"},"tags":[{"name":"pages"}],"servers":[{"url":"https://api.jetadmin.io/api","description":"Production"}],"security":[{"bearerAuth":[]}],"components":{"securitySchemes":{"bearerAuth":{"type":"http","scheme":"bearer","description":"API key from Profile → API Keys."}},"schemas":{"PageSettings":{"type":"object","additionalProperties":true,"description":"Page configuration returned by Jet Admin. Fields vary with the configured page; see the response examples."}}},"paths":{"/projects/{PROJECT_NAME}/{ENV_NAME}/view_settings/{UID}/":{"get":{"summary":"Get page settings","operationId":"getPageSettings","tags":["pages"],"parameters":[{"name":"PROJECT_NAME","in":"path","required":true,"description":"Unique project name (can be taken from Jet Admin project URL)","schema":{"type":"string"}},{"name":"ENV_NAME","in":"path","required":true,"description":"Unique environment name (can be taken from Jet Admin project URL)","schema":{"type":"string"}},{"name":"UID","in":"path","required":true,"description":"Page unique ID","schema":{"type":"string"}},{"name":"draft","in":"query","required":false,"description":"1 or 0, default is 0","schema":{"type":"string","enum":["0","1"],"default":"0"}}],"responses":{"200":{"description":"200: OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PageSettings"}}}}}}}}}
```

## DELETE /projects/{PROJECT\_NAME}/{ENV\_NAME}/view\_settings/{UID}/

> Delete page settings

```json
{"openapi":"3.0.3","info":{"title":"Jet Admin API","version":"2026-09-15"},"tags":[{"name":"pages"}],"servers":[{"url":"https://api.jetadmin.io/api","description":"Production"}],"security":[{"bearerAuth":[]}],"components":{"securitySchemes":{"bearerAuth":{"type":"http","scheme":"bearer","description":"API key from Profile → API Keys."}}},"paths":{"/projects/{PROJECT_NAME}/{ENV_NAME}/view_settings/{UID}/":{"delete":{"summary":"Delete page settings","operationId":"deletePageSettings","tags":["pages"],"parameters":[{"name":"PROJECT_NAME","in":"path","required":true,"description":"Unique project name (can be taken from Jet Admin project URL)","schema":{"type":"string"}},{"name":"ENV_NAME","in":"path","required":true,"description":"Unique environment name (can be taken from Jet Admin project URL)","schema":{"type":"string"}},{"name":"UID","in":"path","required":true,"description":"Page unique ID","schema":{"type":"string"}},{"name":"draft","in":"query","required":false,"description":"1 or 0, default is 0","schema":{"type":"string","enum":["0","1"],"default":"0"}}],"responses":{"204":{"description":"204: No Content"}}}}}}
```

## PATCH /projects/{PROJECT\_NAME}/{ENV\_NAME}/view\_settings/{UID}/

> Update page settings

```json
{"openapi":"3.0.3","info":{"title":"Jet Admin API","version":"2026-09-15"},"tags":[{"name":"pages"}],"servers":[{"url":"https://api.jetadmin.io/api","description":"Production"}],"security":[{"bearerAuth":[]}],"components":{"securitySchemes":{"bearerAuth":{"type":"http","scheme":"bearer","description":"API key from Profile → API Keys."}},"schemas":{"PageSettings":{"type":"object","additionalProperties":true,"description":"Page configuration returned by Jet Admin. Fields vary with the configured page; see the response examples."},"UpdatePageSettings":{"type":"object","properties":{"params":{"type":"string","description":"JSON formatted string with structure"}}}}},"paths":{"/projects/{PROJECT_NAME}/{ENV_NAME}/view_settings/{UID}/":{"patch":{"summary":"Update page settings","operationId":"updatePageSettings","tags":["pages"],"parameters":[{"name":"PROJECT_NAME","in":"path","required":true,"description":"Unique project name (can be taken from Jet Admin project URL)","schema":{"type":"string"}},{"name":"ENV_NAME","in":"path","required":true,"description":"Unique environment name (can be taken from Jet Admin project URL)","schema":{"type":"string"}},{"name":"UID","in":"path","required":true,"description":"Page unique ID","schema":{"type":"string"}},{"name":"draft","in":"query","required":false,"description":"1 or 0, default is 0","schema":{"type":"string","enum":["0","1"],"default":"0"}}],"responses":{"200":{"description":"200: OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PageSettings"}}}}},"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdatePageSettings"}}}}}}}}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.jetadmin.io/api-reference/application-api/pages-api.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
