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/chargedesk-products-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: ChargeDesk REST Charges Products API
description: 'RESTful API for managing charges, customers, subscriptions, products, and webhooks across multiple payment gateways including Stripe, Braintree, PayPal, Authorize.Net, WooCommerce, Shopify, Square, GoCardless, and 14+ others. Supports creating and capturing charges, processing refunds, cancelling subscriptions, requesting payments, and managing customer data.
'
version: v1
contact:
name: ChargeDesk Support
url: https://chargedesk.com/api-docs
termsOfService: https://chargedesk.com/terms
servers:
- url: https://api.chargedesk.com/v1
description: Production API
security:
- basicAuth: []
tags:
- name: Products
description: Manage products and pricing plans
paths:
/products:
get:
operationId: listProducts
summary: List all products
tags:
- Products
parameters:
- name: count
in: query
schema:
type: integer
minimum: 1
maximum: 500
default: 20
- name: offset
in: query
schema:
type: integer
minimum: 0
maximum: 50000
default: 0
responses:
'200':
description: A list of products
content:
application/json:
schema:
$ref: '#/components/schemas/ProductList'
'401':
$ref: '#/components/responses/Unauthorized'
post:
operationId: createProduct
summary: Create a product
tags:
- Products
requestBody:
required: true
content:
application/x-www-form-urlencoded:
schema:
$ref: '#/components/schemas/ProductInput'
responses:
'200':
description: Product created
content:
application/json:
schema:
$ref: '#/components/schemas/Product'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
/products/{product_id}:
get:
operationId: getProduct
summary: Retrieve a product
tags:
- Products
parameters:
- $ref: '#/components/parameters/ProductId'
responses:
'200':
description: Product record
content:
application/json:
schema:
$ref: '#/components/schemas/Product'
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
post:
operationId: updateProduct
summary: Update a product
tags:
- Products
parameters:
- $ref: '#/components/parameters/ProductId'
requestBody:
required: true
content:
application/x-www-form-urlencoded:
schema:
$ref: '#/components/schemas/ProductInput'
responses:
'200':
description: Updated product
content:
application/json:
schema:
$ref: '#/components/schemas/Product'
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
components:
responses:
Unauthorized:
description: Authentication failed
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
BadRequest:
description: Invalid request parameters
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
NotFound:
description: Resource not found
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
parameters:
ProductId:
name: product_id
in: path
required: true
schema:
type: string
description: Unique product identifier
schemas:
ProductList:
type: object
properties:
object:
type: string
example: list
data:
type: array
items:
$ref: '#/components/schemas/Product'
total_count:
type: integer
Error:
type: object
properties:
error:
type: object
properties:
message:
type: string
type:
type: string
code:
type: string
Product:
type: object
properties:
id:
type: string
object:
type: string
example: product
product_id:
type: string
name:
type: string
description:
type: string
url:
type: string
format: uri
amount:
type: number
currency:
type: string
interval:
type: string
enum:
- day
- week
- month
- year
trial_period_days:
type: integer
billing_cycles_total:
type: integer
setup_amount:
type: number
chargeable:
type: boolean
ProductInput:
type: object
required:
- product_id
properties:
product_id:
type: string
name:
type: string
description:
type: string
url:
type: string
format: uri
amount:
type: number
currency:
type: string
interval:
type: string
enum:
- day
- week
- month
- year
trial_period_days:
type: integer
billing_cycles_total:
type: integer
setup_amount:
type: number
chargeable:
type: boolean
securitySchemes:
basicAuth:
type: http
scheme: basic
description: 'Use your ChargeDesk secret key as the username with an empty password. Format: Authorization: YOUR_SECRET_KEY:
'