Integrate the model
Get the API Endpoints
From the top of document listing page , Click on “Published Versions”.

Expand the “Integration Details” to get API endpoints and the Key. Make sure you note the Authorization token.

API to Integrate with your applications
Predict
POST
https://contact-cleareye/predict
Extract the attributes from your file content
Headers
Name
Type
Description
Bearer Token
string
Request Body
Name
Type
Description
files
object
The uploaded file content
project_id
string
Unique identifier for the Jasper Project
version_id
string
Unique Identifier of your model.Unless specified, the default model will be picked
{
"result": {
"attributes": [{
"confidence": 0.0,
"name": "",
"value": [
[{
"name": "",
"value": ""
}]
]
}],
"missing_fields": [
""
],
"type": ""
}
}
Last updated
Was this helpful?