GET
/
api
/
v1
/
documents
/
content
/
sentences
/
{sentence_id}
curl --request GET \
  --url https://api.fieldwise.ai/api/v1/documents/content/sentences/{sentence_id} \
  --header 'X-API-Key: <api-key>'
{
  "id": 1,
  "paragraph_id": 1,
  "sentence_index": 0,
  "content": "Sentence content.",
  "created_at": "2024-01-01T00:00:00"
}

Authorizations

X-API-Key
string
header
required

Headers

X-API-Key
string | null

Path Parameters

sentence_id
integer
required

Response

200
application/json

Successfully retrieved sentence content

The response is of type object.