[DEVELOPERS // API DOCS]

A small, public APIfor the projectrange estimator.

OrbitBoyzz / Orbit Websites publishes a small, unauthenticated JSON API alongside this marketing site. The full machine-readable definition is an OpenAPI 3.1 spec at /openapi.json — every operation below has a stable operationId, typed request/response schemas, and a description, so it works directly with LLM function-calling / tool-use.

[AUTHENTICATION]

No API key or authentication is required. All endpoints are public, read-only or stateless-compute, and rate limits are enforced at the platform (Vercel) level. Every response — success or error — is JSON with a Content-Type: application/json header.

[ENDPOINTS]

POST

/api/quote-estimate

Compute a project price range from need, complexity, urgency, and AI employee selections.

GET

/api/health

Lightweight liveness check for the site API.

[EXAMPLE REQUEST]

curl -X POST https://orbitboyzz.me/api/quote-estimate \
  -H "Content-Type: application/json" \
  -d '{"need":"ai","complexity":"complex","urgency":"urgent","employee":"dispatcher","automation":true}'

[ERROR FORMAT]

Every error response uses the same JSON envelope, with an HTTP status code that matches the failure (400 for invalid input, 405 for a wrong method, 404 for an unknown route):

{
  "error": {
    "code": "invalid_field",
    "message": "\"need\" must be one of: site, refresh, forms, ai.",
    "hint": "Retry with a valid \"need\" value."
  }
}

[MORE MACHINE-READABLE FILES]

/llms.txt

LLM-oriented index of the site, pricing, and content.

/feed.xml

RSS feed of the Orbit Websites blog.

[FREE DEMO // NO OBLIGATION]

See your site live before you pay a cent.

Book a free 15-minute call. We'll build you a working demo — specific to your business — and you decide if it's right for you.