Work with this as data
Every API here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for apis
7 MCP tools reach this
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/dott-system-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
OpenAPI Specification
openapi: 3.2.0
info:
title: Dott GBFS Discovery System API
version: '2.3'
description: Dott's implementation of the General Bikeshare Feed Specification (GBFS) 2.3 for its shared e-scooter and e-bike fleets across European and Middle Eastern cities. The public feed set exposes real-time system information, vehicle types, pricing plans, free-floating vehicle status, geofencing zones, and (where operated as docked) station information and status. City is a path segment; the discovery document at /public/v2/gbfs.json lists every available city and feed. Partner integrators use an authenticated variant of the same feeds that carries stable (non-rotating) vehicle IDs.
contact:
name: Dott Partner Integrations
url: https://ridedott.dev/docs/services/gbfs/introduction/
license:
name: GBFS (Creative Commons / MobilityData)
url: https://github.com/MobilityData/gbfs/blob/v2.3/gbfs.md
servers:
- url: https://gbfs.api.ridedott.com/public/v2
description: Public GBFS 2.3 feeds (open, rotating vehicle IDs)
tags:
- name: System
description: System-level metadata and pricing
paths:
/{city}/system_information.json:
get:
tags:
- System
operationId: getSystemInformation
summary: System information for a city
parameters:
- $ref: '#/components/parameters/City'
responses:
'200':
description: System information
content:
application/json:
schema:
$ref: '#/components/schemas/GbfsFeed'
'404':
$ref: '#/components/responses/RegionNotFound'
/{city}/system_pricing_plans.json:
get:
tags:
- System
operationId: getSystemPricingPlans
summary: Pricing plans for a city
parameters:
- $ref: '#/components/parameters/City'
responses:
'200':
description: Pricing plans
content:
application/json:
schema:
$ref: '#/components/schemas/GbfsFeed'
'404':
$ref: '#/components/responses/RegionNotFound'
components:
schemas:
Error:
type: object
required:
- error
properties:
error:
type: string
description: Human-readable error message string (GBFS-style flat envelope).
GbfsFeed:
allOf:
- $ref: '#/components/schemas/GbfsEnvelope'
GbfsEnvelope:
type: object
description: Common GBFS envelope wrapping every feed response.
required:
- last_updated
- ttl
- version
- data
properties:
last_updated:
type: integer
description: POSIX timestamp of last data refresh
ttl:
type: integer
description: Seconds the response can be cached before refetching
version:
type: string
example: '2.3'
data:
type: object
responses:
RegionNotFound:
description: The requested city/region is not available.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
example:
error: 'Not Found: ERR_REGION_NOT_FOUND'
parameters:
City:
name: city
in: path
required: true
description: City slug as listed in the discovery document (e.g. espoo, brussels, warsaw).
schema:
type: string
example: espoo