CreatorIQ Subscription API

Subscription API part

Operations 3

POST /subscribe Subscribe to event #
DELETE /unsubscribe Unsubscribe from event #
GET /subscriptions Get my subscriptions #

Documentation

📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/6e239b2598043-creator-iq-crm-publishers-api
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/550a4dd4b1c4c-creator-iq-crm-publishers-api-v2
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/23bf95a24efdc-creator-iq-campaign-ap-is
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/1782008e04401-creator-iq-crm-campaigns-api-v2
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/7e7ec9da4e860-creator-iq-reporting-ap-is
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/01ce2c98ffb66-creator-iq-social-account-ap-is
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/eb8bcd088eeca-creator-iq-crm-lists-api
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/38b54f6883f05-creator-iq-crm-onesheets-api
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/4959b70086ddd-creator-iq-crm-publishers-api
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/cd253b6f9f728-creator-iq-divisions-ap-is
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/ff893196191a0-creator-iq-ecommerce-ap-is
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/f8d0b276f1a9d-creator-iq-crm-link-tracking-api
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/0a94acde695e7-conversion-metrics-api
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/62c9deaa94659-creator-iq-safe-iq-brand-safety-api
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/ce6e15986dd02-creator-iq-brand-safety-draft
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/2359b1f62de77-creator-iq-payments-api
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/052262c05afe6-overview

Specifications

Other Resources

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/creatoriq-subscription-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

creatoriq-subscription-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 0.1.0
  title: CreatorIQ Public Subscription API
  description: This is a set of CreatorIQ Public APIs that allow CRUD operations on your CRM data. Learn more about CreatorIQ at [https://www.creatoriq.com/](https://www.creatoriq.com/)
  termsOfService: https://www.creatoriq.com/legal/terms-of-use
  contact:
    name: CreatorIQ
    url: https://www.creatoriq.com/
    email: support@creatoriq.com
  license:
    url: http://www.apache.org/licenses/LICENSE-2.0.html
    name: Apache 2.0
servers:
- url: https://apis.creatoriq.com/pubsub
  description: Live Environment
security:
- apiKey: []
tags:
- name: Subscription
  description: Subscription API part
paths:
  /subscribe:
    post:
      tags:
      - Subscription
      summary: Subscribe to event
      description: Subscribe to an event
      operationId: SubscriptionsController_subscribe
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Subscription'
      responses:
        '201':
          $ref: '#/components/responses/subscription_success'
        '400':
          $ref: '#/components/responses/subscription_error'
        '401':
          $ref: '#/components/responses/401'
        '403':
          $ref: '#/components/responses/403'
        '500':
          $ref: '#/components/responses/500'
      security:
      - apiKey: []
      servers:
      - url: https://apis.creatoriq.com/pubsub
        description: Live Environment
  /unsubscribe:
    delete:
      tags:
      - Subscription
      summary: Unsubscribe from event
      description: Unsubscribe from an event
      operationId: SubscriptionsController_unsubscribe
      parameters:
      - name: entityType
        in: query
        description: Entity being watched
        required: true
        schema:
          type: string
          enum:
          - Campaign
          - Publisher
          - Onesheet
          - List_2
          - brand_safety
          example: Campaign
        examples:
          default:
            value: Campaign
      - name: actionType
        in: query
        description: "Action being watched.\n\nAccording to `entityType`, possible values are:\n- Campaign\n  - create\n  - delete\n  - update.latestpost\n  - payout.paid\n- Publisher\n  - account.linked\n  - account.linked.failed\n  - account.unlinked\n  - update\n  - delete\n  - campaign.added\n- Onesheet\n  - publish\n- List_2\n  - publish\n- brand_safety\n  - post_alert.created\n"
        required: true
        schema:
          type: string
          enum:
          - update.latestpost
          - payout.paid
          - create
          - update
          - delete
          - account.linked
          - account.linked.failed
          - account.unlinked
          - campaign.added
          - publish
          - post_alert.created
          example: update
        examples:
          default:
            value: update
      - name: entityId
        in: query
        description: Unique identifier of the entity to listen a specific one. Listens to all Partner's entities if not specified.
        required: false
        schema:
          type:
          - number
          - 'null'
          example: 11
        examples:
          default:
            value: 11
      responses:
        '201':
          $ref: '#/components/responses/unsubscription_success'
        '400':
          $ref: '#/components/responses/unsubscription_error'
        '401':
          $ref: '#/components/responses/401'
        '403':
          $ref: '#/components/responses/403'
        '404':
          $ref: '#/components/responses/unsubscription_not_found'
        '500':
          $ref: '#/components/responses/500'
      security:
      - apiKey: []
      servers:
      - url: https://apis.creatoriq.com/pubsub
        description: Live Environment
  /subscriptions:
    get:
      tags:
      - Subscription
      summary: Get my subscriptions
      description: Return subscription list
      operationId: SubscriptionsController_getSubscriptions
      responses:
        '200':
          $ref: '#/components/responses/subscriptions_list'
        '400':
          $ref: '#/components/responses/400'
        '401':
          $ref: '#/components/responses/401'
        '403':
          $ref: '#/components/responses/403'
        '500':
          $ref: '#/components/responses/500'
      security:
      - apiKey: []
      servers:
      - url: https://apis.creatoriq.com/pubsub
        description: Live Environment
components:
  responses:
    unsubscription_not_found:
      description: Not Found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorUnsubscriptionNotFoundResponse'
    subscriptions_list:
      description: OK
      content:
        application/json:
          schema:
            type: array
            items:
              $ref: '#/components/schemas/Subscription'
    unsubscription_error:
      description: Bad request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorUnsubscriptionResponse'
    unsubscription_success:
      description: Success
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/UnsubscriptionResponse'
    '403':
      description: Access was denied due to the API due to insufficient access permissions.
    '401':
      description: The request could not be completed due to invalid API credentials.
    subscription_error:
      description: Bad Request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorSubscriptionResponse'
    subscription_success:
      description: Success
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/SubscriptionResponse'
    '500':
      description: Internal server error
    '400':
      description: Bad Request
  schemas:
    ErrorSubscribeData:
      type: object
      description: Response data
      allOf:
      - $ref: '#/components/schemas/EntityActionTypes'
      - type: object
        properties:
          message_code:
            type: string
            description: Error description message
            example: Failed to subscribe
        required:
        - message_code
    ErrorSubscriptionResponse:
      type: object
      properties:
        status:
          type: string
          enum:
          - error
          description: Response status
          example: error
        data:
          $ref: '#/components/schemas/ErrorSubscribeData'
        message:
          type: string
          description: Response message
          example: Subscription on the current event already exists!
      required:
      - status
      - data
      - message
    EntityPublisher:
      type: object
      properties:
        entityType:
          type: string
          enum:
          - Publisher
          description: Entity being watched
          example: Publisher
        actionType:
          type: string
          enum:
          - update
          - delete
          - account.linked
          - account.linked.failed
          - account.unlinked
          - campaign.added
          description: Action being watched
          example: update
      required:
      - entityType
      - actionType
    ErrorUnsubscriptionNotFoundData:
      type: object
      description: Response data
      allOf:
      - $ref: '#/components/schemas/EntityActionTypes'
      - type: object
        properties:
          message_code:
            type: string
            description: Error description message
            example: Subscription not found
        required:
        - message_code
    ErrorUnsubscriptionResponse:
      type: object
      properties:
        status:
          type: string
          enum:
          - error
          description: Response status
          example: error
        data:
          $ref: '#/components/schemas/ErrorUnsubscribeData'
        message:
          type: string
          description: Response message
          example: Wrong entityType or actionType
      required:
      - status
      - data
      - message
    EntityList2:
      type: object
      properties:
        entityType:
          type: string
          enum:
          - List_2
          description: Entity being watched
          example: List_2
        actionType:
          type: string
          enum:
          - publish
          description: Action being watched
          example: publish
      required:
      - entityType
      - actionType
    EntityOnesheet:
      type: object
      properties:
        entityType:
          type: string
          enum:
          - Onesheet
          description: Entity being watched
          example: Onesheet
        actionType:
          type: string
          enum:
          - publish
          description: Action being watched
          example: publish
      required:
      - entityType
      - actionType
    Subscription:
      type: object
      allOf:
      - $ref: '#/components/schemas/EntityActionTypes'
      - type: object
        properties:
          callback:
            type: string
            description: Callback URL
            example: http://webhook.url
          entityId:
            type:
            - number
            - 'null'
            description: Unique identifier of the entity to listen a specific one. Listens to all Partner's entities if not specified.
            example: 11
        required:
        - callback
    SubscriptionResponse:
      type: object
      properties:
        status:
          type: string
          enum:
          - success
          description: Response status
          example: success
        data:
          $ref: '#/components/schemas/EntityActionTypes'
        message:
          type: string
          description: Response message
          example: Successfully subscribed
      required:
      - status
      - data
      - message
    UnsubscriptionResponse:
      type: object
      properties:
        status:
          type: string
          enum:
          - success
          description: Response status
          example: success
        data:
          $ref: '#/components/schemas/EntityActionTypes'
        message:
          type: string
          description: Response message
          example: Successfully unsubscribed
      required:
      - status
      - data
      - message
    EntityBrandSafety:
      type: object
      properties:
        entityType:
          type: string
          enum:
          - brand_safety
          description: Entity being watched
          example: brand_safety
        actionType:
          type: string
          enum:
          - post_alert.created
          description: Action being watched
          example: post_alert.created
      required:
      - entityType
      - actionType
    ErrorUnsubscriptionNotFoundResponse:
      type: object
      properties:
        status:
          type: string
          enum:
          - error
          description: Response status
          example: error
        data:
          $ref: '#/components/schemas/ErrorUnsubscriptionNotFoundData'
        message:
          type: string
          description: Response message
          example: No subscription found for deletion
      required:
      - status
      - data
      - message
    ErrorUnsubscribeData:
      type: object
      description: Response data
      allOf:
      - $ref: '#/components/schemas/EntityActionTypes'
      - type: object
        properties:
          message_code:
            type: string
            description: Error description message
            example: Failed to unsubscribe
        required:
        - message_code
    EntityActionTypes:
      type: object
      oneOf:
      - $ref: '#/components/schemas/EntityCampaign'
      - $ref: '#/components/schemas/EntityPublisher'
      - $ref: '#/components/schemas/EntityOnesheet'
      - $ref: '#/components/schemas/EntityList2'
      - $ref: '#/components/schemas/EntityBrandSafety'
    EntityCampaign:
      type: object
      properties:
        entityType:
          type: string
          enum:
          - Campaign
          description: Entity being watched
          example: Campaign
        actionType:
          type: string
          enum:
          - create
          - delete
          - update.latestpost
          - payout.paid
          description: Action being watched
          example: create
      required:
      - entityType
      - actionType
  securitySchemes:
    apiKey:
      type: apiKey
      name: x-api-key
      in: header