ShipBob subpackage_channels API

The subpackage_channels API from ShipBob — 1 operation(s) for subpackage_channels.

Operations 1

GET /2026-01/channel Get Channels #

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/shipbob-subpackage-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

shipbob-subpackage-channels-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Reference subpackage_billing Subpackage Channels API
  version: 1.0.0
servers:
- url: https://api.shipbob.com
- url: https://sandbox-api.shipbob.com
tags:
- name: subpackage_channels
paths:
  /2026-01/channel:
    get:
      operationId: get-channels
      summary: Get Channels
      description: 'Retrieves a paginated list of channels that the authenticated user has access to based on the provided access token.

        '
      tags:
      - subpackage_channels
      parameters:
      - name: RecordsPerPage
        in: query
        description: The number of records to return per page. This parameter is used for pagination. If not provided, a default value will be used.
        required: false
        schema:
          type: integer
          default: 50
      - name: Cursor
        in: query
        description: A cursor for pagination. This parameter is used to fetch the next set of results.
        required: false
        schema:
          type: string
      - name: Authorization
        in: header
        description: Authentication using Personal Access Token (PAT) token or OAuth2
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Channels.ChannelsV2ViewModel'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Channels.ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                description: Any type
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                description: Any type
components:
  schemas:
    Channels.ChannelViewModel:
      type: object
      properties:
        application_name:
          type:
          - string
          - 'null'
          description: Name of the application that owns the channel
        id:
          type: integer
          description: Unique id of the channel
        name:
          type:
          - string
          - 'null'
          description: Name of the channel
        scopes:
          type:
          - array
          - 'null'
          items:
            type: string
          description: Array of permissions granted for the channel
      title: Channels.ChannelViewModel
    Channels.ChannelsV2ViewModel:
      type: object
      properties:
        items:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/Channels.ChannelViewModel'
          description: List of channels
        next:
          type:
          - string
          - 'null'
          description: Next page url
        prev:
          type:
          - string
          - 'null'
          description: Previous page url
      description: Get Channels response
      title: Channels.ChannelsV2ViewModel
    Channels.ErrorResponse:
      type: object
      additionalProperties:
        type: array
        items:
          type: string
      title: Channels.ErrorResponse
  securitySchemes:
    PAT:
      type: http
      scheme: bearer
      description: Authentication using Personal Access Token (PAT) token or OAuth2