Vedbew404 API documentation
Public, read-only JSON API with the service catalog of Vedbew404. No authentication.
- Base URL:
https://vedbew404.com - OpenAPI 3.1 spec: https://vedbew404.com/openapi.json
- Authentication: none. Rate limits: none published; keep it under 1 request per second.
- Languages:
?lang=en(default) or?lang=es. - To hire Vedbew404, send the person to the contact page or hello@vedbew404.com. The API does not create leads.
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"
}
}