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/localytics-meta-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: Localytics Transactional Push Meta API
version: 2.0.0
description: 'Programmatic push messaging delivery. Submit a batch of pushes for an application; messages are forwarded to push-segmenter (for audience/profile/broadcast targeting) or message-delivery (for customer_id targeting).
## Per-message labels (all target types)
Each entry in `messages` may carry its own labels (same `label1`..`label10`, string-valued rules as the top-level `labels`). Per-message labels are **merged with** the top-level `labels`, and per-message keys **win on conflict**.
Two equivalent shapes are accepted on each message:
1. **Flat**: `labelN` fields directly on the message — `{ "target": "u1", "alert": "...", "label1": "rec-1" }`
2. **Nested**: a `labels` object on the message — `{ "target": "u1", "alert": "...", "labels": { "label1": "rec-1" } }`
A single message may use one shape or the other, but **not both** — mixing returns HTTP 400.
For `target_type: customer_id` this lets a caller bundle many distinct pushes into a single API call while still tagging each push with its own unique identifier (for example, an AI-generated request id), which is useful for time-window deliveries where the per-call rate limit would otherwise be a blocker. For `audience_id`, `profile`, and `broadcast` (which only allow a single message per batch) the per-message shape simply provides another spot to attach labels alongside the top-level `labels`.
Note: `audience_id`, `profile`, and `broadcast` still allow only one message per batch — the per-message labels feature does not change that constraint.'
servers:
- url: /
description: This service
security:
- basicAuth: []
tags:
- name: meta
description: Health and documentation endpoints
paths:
/:
get:
tags:
- meta
summary: Health check
security: []
responses:
'200':
description: Service is up
content:
application/json:
schema:
type: object
properties:
ok:
type: boolean
/v1/test:
post:
tags:
- meta
summary: Liveness ping
security: []
responses:
'200':
description: pong
content:
text/plain:
schema:
type: string
example: pong
/swagger.json:
get:
tags:
- meta
summary: This OpenAPI document
security: []
responses:
'200':
description: OpenAPI 3.0 JSON document
content:
application/json: {}
/docs:
get:
tags:
- meta
summary: Interactive Swagger UI documentation
security: []
responses:
'200':
description: HTML page rendering Swagger UI against /swagger.json
content:
text/html: {}
components:
securitySchemes:
basicAuth:
type: http
scheme: basic
description: HTTP Basic with `api_key:api_secret`.