OpenAPI reference
Published metadata
Section titled “Published metadata”{ "openapi": "3.0.0", "info": { "title": "Taxiscrape Fare API", "version": "0.1.0" }, "servers": [ { "url": "https://api.taxiscrape.com" } ]}| Method | Path | Summary |
|---|---|---|
GET | /fare | Fetch a Grab fare quote between two GPS points. |
Components
Section titled “Components”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.
/fareaccepts an optionalformatquery parameter:simple,simplified, orfull.- The
200response schema for/fareis currently open. - Error responses for
400,429,502, and503referenceErrorBody.