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/marketo-channels-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:
description: Marketo Engage Rest API
version: '1.0'
title: Marketo Engage Rest Channels API
termsOfService: https://www.adobe.com/legal.html
contact:
name: Adobe Developer Relations
url: https://experienceleague.adobe.com/en/docs/marketo-developer/marketo/home
email: ''
license:
name: API License Agreement
url: https://experienceleague.adobe.com/en/docs/marketo-developer/marketo/api-license
servers:
- url: https://localhost:8080/
tags:
- name: Channels
description: Channel Controller
paths:
/rest/asset/v1/channel/byName.json:
get:
tags:
- Channels
summary: Get Channel by Name
description: 'Retrieves channels based on the provided name. Required Permissions: Read-Only Assets, Read-Write Assets'
operationId: getChannelByNameUsingGET
parameters:
- name: Name
in: query
description: Name of channel to retrieve
required: true
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/ResponseOfChannelResponse'
/rest/asset/v1/channels.json:
get:
tags:
- Channels
summary: Get Channels
description: 'Retrieves all channels. Required Permissions: Read-Only Assets, Read-Write Assets'
operationId: getAllChannelsUsingGET
parameters:
- name: maxReturn
in: query
description: Maximum number of records to return. Max 200, default 20
required: false
schema:
type: integer
format: int32
- name: offset
in: query
description: Integer offset for paging
required: false
schema:
type: integer
format: int32
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/ResponseOfChannelResponse'
components:
schemas:
Error:
type: object
required:
- code
- message
properties:
code:
type: string
description: Error code of the error. See full list of error codes <a href="https://developers.marketo.com/rest-api/error-codes/">here</a>
message:
type: string
description: Message describing the cause of the error
ChannelProgression:
type: object
properties:
description:
type: string
description: Description of the program status
hidden:
type: boolean
description: Whether the status has been hidden
name:
type: string
description: Name of the status
type:
type: string
description: Type of the status
step:
type: integer
format: int32
description: Step number of the status
success:
type: boolean
description: Whether this status is a success step for program members
ResponseOfChannelResponse:
type: object
properties:
errors:
type: array
items:
$ref: '#/components/schemas/Error'
requestId:
type: string
result:
type: array
items:
$ref: '#/components/schemas/ChannelResponse'
success:
type: boolean
warnings:
type: array
items:
type: string
ChannelResponse:
type: object
required:
- applicableProgramType
- createdAt
- id
- name
- updatedAt
properties:
applicableProgramType:
type: string
description: Types of programs to which the channel can apply
createdAt:
type: string
format: date-time
description: Datetime when the channel was created
id:
type: integer
format: int32
description: Id of the Channel
name:
type: string
description: Name of the Channel
progressionStatuses:
type: array
description: List of available statuses for members of programs with the channel
items:
$ref: '#/components/schemas/ChannelProgression'
updatedAt:
type: string
format: date-time
description: Datetime when the channel was most recently updated