Skip to content
Vedbew404

Vedbew404 API documentation

Public, read-only JSON API with the service catalog of Vedbew404. No authentication.

Endpoints

GET /api/services

List services (operationId: listServices). Returns every service Vedbew404 offers, with summary, target audience, what is included, deliverables, FAQs and the URL of its page.

curl -sS "https://vedbew404.com/api/services?lang=en"

GET /api/services/{id}

Get one service (operationId: getService). Returns a single service by its stable id (for example `ai-chatbots` or `ecommerce`). Ids come from `listServices`.

curl -sS "https://vedbew404.com/api/services/ai-chatbots?lang=en"

Errors

Errors are JSON with the HTTP status, a stable code (not_found, invalid_parameter, method_not_allowed), a message and a hint. Unknown paths under /api return 404 in the same format.

{
  "error": {
    "status": 404,
    "code": "not_found",
    "message": "No service with id \"foo\".",
    "hint": "List valid ids with GET https://vedbew404.com/api/services",
    "docs": "https://vedbew404.com/docs"
  }
}