cURL
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", "paragraphs": [ { "id": 1, "page_id": 1, "paragraph_index": 0, "content": "First paragraph...", "created_at": "2024-01-01T00:00:00", "sentences": [ { "id": 1, "paragraph_id": 1, "sentence_index": 0, "content": "First sentence.", "created_at": "2024-01-01T00:00:00" } ] } ] }
Retrieve a specific page by its ID, including all its paragraphs and sentences. The response is hierarchically structured with:
Successfully retrieved page content
The response is of type object.
object