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/cesanta-data-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: Cesanta mDash REST Data API
description: 'mDash is Cesanta''s managed IoT cloud platform for devices built with Mongoose OS.
It provides device management, over-the-air (OTA) firmware updates, a device
shadow/database, remote RPC, API key management, and notification logs.
This OpenAPI description was captured from Cesanta''s published REST API reference
(https://mongoose-os.com/docs/mdash/api.md). Every request must be authenticated
with an `Authorization: Bearer KEY` header; POST/PUT calls that carry a JSON body
must set `Content-Type: application/json`.
'
version: v2
contact:
name: Cesanta Support
email: support@cesanta.com
url: https://mdash.net/home/
license:
name: Cesanta Terms
url: https://mongoose-os.com/
servers:
- url: https://dash.mongoose-os.com/api/v2
description: mDash hosted production API
security:
- bearerAuth: []
tags:
- name: Data
description: Device data storage and retrieval
paths:
/devices/{id}/data:
get:
operationId: getDeviceData
summary: Get device saved data
description: Retrieve the saved data for a single device.
tags:
- Data
parameters:
- $ref: '#/components/parameters/DeviceId'
responses:
'200':
description: Device data
'401':
description: Missing or invalid bearer token
/devices/data:
get:
operationId: getAllDevicesData
summary: Get data from all devices
description: Retrieve saved data across all devices on the account.
tags:
- Data
responses:
'200':
description: Data for all devices
'401':
description: Missing or invalid bearer token
components:
parameters:
DeviceId:
name: id
in: path
required: true
description: Device identifier
schema:
type: string
securitySchemes:
bearerAuth:
type: http
scheme: bearer
description: mDash API key sent as an HTTP bearer token.