Quickstart
Welcome
Get started by following the steps below. You can find your orgId and authKey on our User Dashboard
Still not clear? Contact usQuickstart
Model: RikAI2
A powerful LLM with document understanding
Request Sample
Request Sample
import requests
import json
url = "https://api.lazarusai.com/api/rikai/bulk"
payload = json.dumps({
"inputUrl": [
"https://firebasestorage.googleapis.com/v0/b/lazarus-apis-testing.appspot.com/o/examples%2FSample%20Form.pdf?alt=media&token=5b537052-ea54-4be4-9d36-9620ee994c1c"
],
"question": "What is the patient's first and last name?",
"outputURL": "https://example.com/output"
})
headers = {
"orgId": "org_id_HERE",
"authKey": "auth_key_HERE",
"Content-Type": "application/json"
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
Don't want to write code?
Try our Demo UI.