Skip to main content
POST
/
v1
/
manifest
/
lint
Lint Manifest
curl --request POST \
  --url https://api.mixpeek.com/v1/manifest/lint \
  --header 'Content-Type: multipart/form-data' \
  --form manifest_file='@example-file'
{
  "valid": true,
  "results": [
    {
      "code": "<string>",
      "severity": "error",
      "message": "<string>",
      "location": "<string>",
      "suggestion": "<string>",
      "fix_example": "<string>"
    }
  ],
  "summary": {}
}

Documentation Index

Fetch the complete documentation index at: https://docs.mixpeek.com/docs/llms.txt

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

Headers

Authorization
string

REQUIRED: Bearer token authentication using your API key. Format: 'Bearer sk_xxxxxxxxxxxxx'. You can create API keys in the Mixpeek dashboard under Organization Settings.

Examples:

"Bearer YOUR_API_KEY"

"Bearer YOUR_STRIPE_API_KEY"

Query Parameters

skip_rules
string[]

Rule codes to skip (e.g., MISSING_DESCRIPTION)

Body

multipart/form-data
manifest_file
file
required

YAML manifest file

Response

Successful Response

Response from the lint endpoint.

Example: { "valid": true, "results": [...], "summary": {"error": 0, "warning": 2, "info": 3} }

valid
boolean
required

Whether the manifest is valid (no errors, warnings OK)

results
LintResult · object[]

List of lint results

summary
Summary · object

Count of results by severity