Check the service is reachable
The one endpoint that is safe to call as often as you like. No side effects, no credential, no cost.
curl -i https://www.raftlabs.com/api/v1/health
Read the API description
Start here in a client generator. The document carries the schemas, the error catalog, and the versioning policy.
curl -s https://www.raftlabs.com/openapi.json | jq '.paths | keys'
See the rate-limit budget
Every response reports the remaining budget, on success as well as on refusal, so a client can pace itself before it is ever throttled.
curl -sI https://www.raftlabs.com/api/v1/health | grep -i ratelimit
Inspect an error
Every failure is RFC 9457 problem details with a stable `code` and an actionable `hint`. No route under /api returns an HTML error page.
curl -s https://www.raftlabs.com/api/does-not-exist | jq
Get a page as markdown
Content is published for agents as well as browsers. Unknown paths answer 404 with a markdown recovery body listing the site's own indexes.
curl -s -H "Accept: text/markdown" https://www.raftlabs.com/