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/plivo-account-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: Plivo Account API
version: v1
description: 'Plivo''s HTTP API for programmable voice, messaging (SMS/MMS/WhatsApp),
SIP trunking, account, and number management. This specification
captures a representative subset of the Account and Message resources
as documented at https://www.plivo.com/docs/. Authentication uses
HTTP Basic with your Plivo Auth ID (username) and Auth Token (password).
'
contact:
name: Plivo Developer Documentation
url: https://www.plivo.com/docs/
servers:
- url: https://api.plivo.com/v1
description: Plivo production API
security:
- basicAuth: []
tags:
- name: Account
description: Account-level configuration and details.
paths:
/Account/{auth_id}/:
parameters:
- $ref: '#/components/parameters/AuthId'
get:
tags:
- Account
operationId: getAccount
summary: Retrieve account details
description: Returns the details of the Plivo account identified by auth_id.
responses:
'200':
description: Account details
content:
application/json:
schema:
$ref: '#/components/schemas/Account'
post:
tags:
- Account
operationId: updateAccount
summary: Update account details
description: Updates one or more mutable properties on the account. Properties not supplied remain unchanged.
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/AccountUpdate'
responses:
'202':
description: Update accepted
content:
application/json:
schema:
$ref: '#/components/schemas/ApiAck'
components:
parameters:
AuthId:
in: path
name: auth_id
required: true
schema:
type: string
description: Plivo account Auth ID.
schemas:
AccountUpdate:
type: object
properties:
name:
type: string
address:
type: string
city:
type: string
state:
type: string
timezone:
type: string
ApiAck:
type: object
properties:
api_id:
type: string
message:
type: string
Account:
type: object
properties:
account_type:
type: string
address:
type: string
api_id:
type: string
auth_id:
type: string
auto_recharge:
type: boolean
billing_mode:
type: string
cash_credits:
type: string
city:
type: string
name:
type: string
resource_uri:
type: string
state:
type: string
timezone:
type: string
securitySchemes:
basicAuth:
type: http
scheme: basic
description: HTTP Basic with Plivo Auth ID (username) and Auth Token (password).