POST
/
upload
/
text
Upload text
curl --request POST \
  --url https://api.liquidindex.dev/upload/text \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "owner_id": "<string>",
  "text": "<string>"
}'
{
  "job_id": "1234567890",
  "status": "PENDING"
}
This route is temporarily unavailable

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
owner_id
string
required

The project/customer ID to associate the text with

text
string
required

The text to be uploaded and processed

Response

Successful query response

job_id
string
required

The Job ID belonging to the text upload

Example:

"1234567890"

status
string
required

The status of the text upload

Example:

"PENDING"