Airship Channels API

The Channels API from Airship — 2 operation(s) for channels.

Operations 2

GET /api/channels List channels #
GET /api/channels/{channel_id} Get a channel #

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.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/airship-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

airship-channels-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Airship REST Channels API
  version: ua
  description: 'Best-effort OpenAPI 3.1 representation of the Airship (formerly Urban Airship)

    REST API derived from https://www.airship.com/docs/developer/rest-api/ua/.

    Airship is a mobile customer engagement platform offering push, in-app, web,

    SMS, MMS, email messaging, named users, channels, segments, schedules, lists,

    pipelines, and reports. Authentication supports Basic Auth (App or Master),

    Bearer Token, and OAuth 2.0 with scoped tokens.

    '
  contact:
    name: Airship
    url: https://www.airship.com/docs/developer/rest-api/ua/
servers:
- url: https://go.airship.com
  description: Airship US data center
- url: https://go.airship.eu
  description: Airship EU data center
security:
- BasicMasterAuth: []
- BearerAuth: []
- OAuth2:
  - psh
tags:
- name: Channels
paths:
  /api/channels:
    get:
      tags:
      - Channels
      summary: List channels
      operationId: listChannels
      responses:
        '200':
          description: OK
  /api/channels/{channel_id}:
    get:
      tags:
      - Channels
      summary: Get a channel
      operationId: getChannel
      parameters:
      - name: channel_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
components:
  securitySchemes:
    BasicAppAuth:
      type: http
      scheme: basic
      description: HTTP Basic auth using app_key and app_secret (App level).
    BasicMasterAuth:
      type: http
      scheme: basic
      description: HTTP Basic auth using app_key and master_secret (Master level - required for most write operations).
    BearerAuth:
      type: http
      scheme: bearer
      description: Bearer token.
    OAuth2:
      type: oauth2
      description: 'OAuth 2.0 scoped tokens. Scopes include att (attachments), chn (channels),

        cnt (contacts), evt (events), lst (lists), nu (named users), pln (pipelines),

        psh (push), rpt (reports), sch (schedules), tpl (content templates).

        '
      flows:
        clientCredentials:
          tokenUrl: https://oauth2.asnapieu.com/token
          scopes:
            att: Attachments
            chn: Channels
            cnt: Contacts
            evt: Events
            lst: Lists
            nu: Named Users
            pln: Pipelines
            psh: Push
            rpt: Reports
            sch: Schedules
            tpl: Content Templates