Skip to main content
GET
/
errors
/
{slug}
Get error type by slug
curl --request GET \
  --url https://api.veryfront.com/errors/{slug} \
  --header 'Authorization: Bearer <token>'
{
  "slug": "resource-not-found",
  "title": "Resource Not Found",
  "status": 404,
  "category": "RESOURCE",
  "suggestion": "<string>",
  "solution": {
    "message": "<string>",
    "steps": [
      "<string>"
    ],
    "example": "<string>",
    "tips": [
      "<string>"
    ],
    "relatedErrors": [
      "<string>"
    ]
  },
  "docs": "https://veryfront.com/docs/api/errors/resource-not-found"
}

Authorizations

Authorization
string
header
required

Authentication via JWT token or API key. JWT: Get from Veryfront dashboard. API Key: Format "vf__" - create via /api-keys endpoint.

Path Parameters

slug
string
required

Error slug identifier

Example:

"insufficient-credits"

Response

Error type details

slug
string
required
Example:

"resource-not-found"

title
string
required
Example:

"Resource Not Found"

status
number
required
Example:

404

category
string
required
Example:

"RESOURCE"

suggestion
string
solution
object
docs
string
Example:

"https://veryfront.com/docs/api/errors/resource-not-found"