Skip to main content
POST
/
v1
/
check
Check spec
curl --request POST \
  --url https://api.vidjutsu.ai/v1/check \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "spec": {},
  "rules": {}
}
'
{
  "passed": true,
  "results": [
    {
      "rule": "<string>",
      "passed": true,
      "message": "<string>",
      "severity": "<string>",
      "location": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.vidjutsu.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
spec
object
required

VidLang spec JSON to validate

rules
object
required

VidLang rules config. All rules off by default — enable explicitly. E.g. { "VL013": true, "VL003": false, "VL011": { "severity": "warning" } }

Response

The request has succeeded.

passed
boolean
required
results
object[]
required