API Reference
Code Execution Endpoint
http://api.jori.health/v1Create a new user
POST /code
Executes pyspark code on our infrastructure and returns you the result.
Headers
Name
Value
Content-Type
application/json
Authorization
Bearer <token>
Body
Name
Type
Description
code
string
Code to be executed
Response
{
"error": null,
"execution_time": 0.123,
"file": null,
"logs": null,
"output": "42",
"successful": true
}Last updated