Skip to main content

Documentation Index

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

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

Get full details for a specific API error type by slug, including solution steps and related errors.

Tool details

FieldValue
Nameget_error_type
GroupErrors

Playground

Input schema

Input schema
{
  "type": "object",
  "properties": {
    "slug": {
      "type": "string",
      "description": "Error slug identifier (e.g. \"insufficient-credits\")"
    }
  },
  "required": [
    "slug"
  ],
  "additionalProperties": false,
  "description": "Input schema for the get_error_type tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Output schema

Output schema
{
  "type": "object",
  "properties": {
    "slug": {
      "type": "string",
      "description": "The slug associated with this tool result."
    },
    "title": {
      "type": "string",
      "description": "Short human-readable title returned by the tool."
    },
    "status": {
      "type": "number",
      "description": "Lifecycle status for the returned record."
    },
    "category": {
      "type": "string",
      "description": "The category associated with this tool result."
    },
    "suggestion": {
      "type": "string",
      "description": "The suggestion associated with this tool result."
    },
    "docs": {
      "type": "string",
      "description": "The docs associated with this tool result."
    },
    "solution": {
      "type": "object",
      "properties": {
        "message": {
          "type": "string",
          "description": "The message associated with this tool result."
        },
        "steps": {
          "type": "array",
          "items": {
            "type": "string",
            "description": "One step item associated with this tool result."
          },
          "description": "The steps associated with this tool result."
        },
        "example": {
          "type": "string",
          "description": "The example associated with this tool result."
        },
        "tips": {
          "type": "array",
          "items": {
            "type": "string",
            "description": "One tip item associated with this tool result."
          },
          "description": "The tips associated with this tool result."
        },
        "relatedErrors": {
          "type": "array",
          "items": {
            "type": "string",
            "description": "One related error item associated with this tool result."
          },
          "description": "The related errors associated with this tool result."
        }
      },
      "required": [
        "message"
      ],
      "additionalProperties": false,
      "description": "The solution associated with this tool result."
    }
  },
  "required": [
    "slug",
    "title",
    "status",
    "category",
    "docs"
  ],
  "additionalProperties": false,
  "description": "Structured result returned by the get_error_type tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}