Skip to content

OpenAPI reference

{
"openapi": "3.0.0",
"info": {
"title": "Taxiscrape Fare API",
"version": "0.1.0"
},
"servers": [
{
"url": "https://api.taxiscrape.com"
}
]
}
MethodPathSummary
GET/fareFetch a Grab fare quote between two GPS points.

The published schema defines one reusable error body:

{
"ErrorBody": {
"type": "object",
"title": "ErrorBody",
"required": ["detail"],
"properties": {
"detail": {
"type": "string"
}
}
}
}
  • No authentication scheme is published in the current OpenAPI document.
  • /fare accepts an optional format query parameter: simple, simplified, or full.
  • The 200 response schema for /fare is currently open.
  • Error responses for 400, 429, 502, and 503 reference ErrorBody.