API Runner
formula Endpoints
All endpoints for the formula API group. Great for feeding into an LLM context.
POST
/v1/formula/evaluate
Evaluate Formula
Request Body
{
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/EvaluateRequest"
}
}
},
"required": true
}Responses
200Successful Response
application/json
{}422Validation Error
application/json
{
"$ref": "#/components/schemas/HTTPValidationError"
}