AIXBT Docs

Validate a recipe

Validates a raw YAML recipe definition without executing it. Returns structural validation issues and basic recipe metadata when valid.

POST
/v2/recipes/validate

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://api.aixbt.tech/v2/recipes/validate" \  -H "Content-Type: application/json" \  -d '{}'
{
  "valid": true,
  "issues": [
    {
      "path": "string",
      "message": "string"
    }
  ],
  "recipe": {
    "name": "string",
    "version": "string",
    "description": "string",
    "stepCount": 0,
    "paramCount": 0
  }
}
Empty
Empty
Empty