GET
/
api
/
v1
/
documents
/
content
/
pages
/
{page_id}
Get page content
curl --request GET \
  --url https://api.fieldwise.ai/api/v1/documents/content/pages/{page_id} \
  --header 'X-API-Key: <api-key>'
{
  "id": 1,
  "document_id": 123,
  "page_number": 1,
  "content": "Full page content...",
  "created_at": "2024-01-01T00:00:00"
}

Authorizations

X-API-Key
string
header
required

Headers

X-API-Key
string | null

Path Parameters

page_id
integer
required

Response

200
application/json

Successfully retrieved page content

The response is of type object.