CreatorIQ Lists API

Lists public API

Operations 7

GET /crm/v1/api/lists Get Lists collection #
POST /crm/v1/api/lists Create Publishers List #
POST /crm/v1/api/list/{listId}/publishers Add a Publisher to a List #
DELETE /crm/v1/api/list/{listId}/publishers Delete a Publisher from a List #
GET /crm/v1/api/list/{listId} Get a single List #
DELETE /crm/v1/api/list/{listId} Delete a Publisher List #
PATCH /crm/v1/api/list/{listId} Update List #

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-lists-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-lists-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.0.0
  title: CreatorIQ CRM Lists API
  description: CreatorIQ CRM APIs for Lists resource
  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
  description: Live
security:
- apiKey: []
tags:
- name: Lists
  description: Lists public API
paths:
  /crm/v1/api/lists:
    get:
      tags:
      - Lists
      summary: Get Lists collection
      description: Return a paginated collection of Lists
      operationId: getListsCollection
      parameters:
      - name: page
        in: query
        description: Collection's page to show
        required: false
        schema:
          type: integer
          default: 1
          example: 3
        examples:
          default:
            value: 3
      - name: size
        in: query
        description: Amount of items on the page. Default is 20
        required: false
        schema:
          type: integer
          default: 20
          example: 50
        examples:
          default:
            value: 50
      - name: order
        in: query
        description: Sort order. Default is 'Id,desc'
        required: false
        schema:
          type: string
          default: Id,desc
          example: UpdatedAt,desc
        examples:
          default:
            value: UpdatedAt,desc
      responses:
        '200':
          $ref: '#/components/responses/ListsCollection'
        '401':
          $ref: '#/components/responses/401'
        '403':
          $ref: '#/components/responses/403'
      security:
      - apiKey: []
      servers:
      - url: https://apis.creatoriq.com
        description: Live
    post:
      tags:
      - Lists
      summary: Create Publishers List
      description: Create Publishers List
      operationId: createList
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ListBodyModel'
      responses:
        '201':
          $ref: '#/components/responses/CreateListResponse201'
        '400':
          $ref: '#/components/responses/400'
        '401':
          $ref: '#/components/responses/401'
        '403':
          $ref: '#/components/responses/403'
      security:
      - apiKey: []
      servers:
      - url: https://apis.creatoriq.com
        description: Live
  /crm/v1/api/list/{listId}/publishers:
    post:
      tags:
      - Lists
      summary: Add a Publisher to a List
      description: Add a Publisher to a List
      operationId: postPublisherToList
      parameters:
      - name: listId
        in: path
        description: Unique List identifier
        required: true
        style: simple
        schema:
          type: integer
          format: int32
          example: 101
        examples:
          default:
            value: 101
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PublishersListBody'
      responses:
        '200':
          $ref: '#/components/responses/PublisherList200'
        '400':
          $ref: '#/components/responses/PublisherList400'
        '401':
          $ref: '#/components/responses/401'
        '403':
          $ref: '#/components/responses/403'
        '404':
          $ref: '#/components/responses/404'
      security:
      - apiKey: []
      servers:
      - url: https://apis.creatoriq.com
        description: Live
    delete:
      tags:
      - Lists
      summary: Delete a Publisher from a List
      description: Delete a Publisher from a List
      operationId: deletePublisherFromList
      parameters:
      - name: listId
        in: path
        description: Unique List identifier
        required: true
        style: simple
        schema:
          type: integer
          format: int32
          example: 101
        examples:
          default:
            value: 101
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PublishersListBody'
      responses:
        '200':
          $ref: '#/components/responses/PublisherList200'
        '400':
          $ref: '#/components/responses/PublisherList400'
        '401':
          $ref: '#/components/responses/401'
        '403':
          $ref: '#/components/responses/403'
        '404':
          $ref: '#/components/responses/ErrorResponse404List'
      security:
      - apiKey: []
      servers:
      - url: https://apis.creatoriq.com
        description: Live
  /crm/v1/api/list/{listId}:
    get:
      tags:
      - Lists
      summary: Get a single List
      description: Get a single List
      operationId: getSingleList
      parameters:
      - name: listId
        in: path
        description: List Id
        required: true
        schema:
          type: integer
          format: int32
          example: 333333
        examples:
          default:
            value: 333333
      responses:
        '200':
          $ref: '#/components/responses/SingleList'
        '403':
          $ref: '#/components/responses/403'
        '404':
          $ref: '#/components/responses/404'
      security:
      - apiKey: []
      servers:
      - url: https://apis.creatoriq.com
        description: Live
    delete:
      tags:
      - Lists
      summary: Delete a Publisher List
      description: Delete a Publisher List
      operationId: deletePublisherList
      parameters:
      - name: listId
        in: path
        description: Unique List identifier
        required: true
        style: simple
        schema:
          type: integer
          format: int32
          example: 202
        examples:
          default:
            value: 202
      responses:
        '204':
          description: Successful
        '400':
          $ref: '#/components/responses/400'
        '401':
          $ref: '#/components/responses/401'
        '403':
          $ref: '#/components/responses/403'
        '404':
          $ref: '#/components/responses/ErrorResponse404List'
      security:
      - apiKey: []
      servers:
      - url: https://apis.creatoriq.com
        description: Live
    patch:
      tags:
      - Lists
      summary: Update List
      description: Makes updates to a publisher list.
      operationId: updateList
      parameters:
      - name: listId
        in: path
        description: List Id
        required: true
        schema:
          type: integer
          format: int32
          example: 333333
        examples:
          default:
            value: 333333
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateListBodyModel'
      responses:
        '204':
          description: Success
        '400':
          $ref: '#/components/responses/400'
        '403':
          $ref: '#/components/responses/403'
        '404':
          $ref: '#/components/responses/404'
      security:
      - apiKey: []
      servers:
      - url: https://apis.creatoriq.com
        description: Live
components:
  responses:
    ListsCollection:
      description: Lists Collection
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ListsCollectionModel'
    CreateListResponse201:
      description: Create Publishers List - Success
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ListModel'
    PublisherList200:
      description: Delete a Publisher from a List - Success
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ListModel'
    SingleList:
      description: List
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ListModel'
    '403':
      description: Access was denied due to the API has insufficient access permissions
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse403'
    '401':
      description: Incorrect x-api-key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse401'
    PublisherList400:
      description: CoreException
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/PublisherList400Model'
    '404':
      description: The list hasn't been found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse404'
    ErrorResponse404List:
      description: NotFoundException
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse404'
    '400':
      description: No input data found (or The name field is required).
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse400'
  schemas:
    ListBodyModel:
      type: object
      description: Create (and Update) List Body Model
      properties:
        loaded:
          type:
          - boolean
          - 'null'
          enum:
          - true
          - false
          - null
          default: null
          example: false
        Name:
          type: string
          description: List Name
          example: List1
        Description:
          type: string
          description: List Description
          example: Test1
        Tags:
          type:
          - string
          - 'null'
          description: List Tags
          example: '"Tag1,Tag2"'
        Publishers:
          type: array
          description: List Publishers (Array with publishers ids)
          items:
            oneOf:
            - type: integer
              format: int32
          example:
          - 311280
          - 312816
          - 572313
          - 572314
          - 572319
          - 572320
          - 572330
          - 572331
          - 595106
        permissions:
          type: object
          description: List permissions
          properties:
            Create:
              type: integer
              enum:
              - 0
              - 1
              description: Create List Permission
              example: 0
            Delete:
              type: integer
              enum:
              - 0
              - 1
              description: Delete List Permission
              example: 1
            Enable:
              type: integer
              enum:
              - 0
              - 1
              description: Enable List Permission
              example: 1
            Execute:
              type: integer
              enum:
              - 0
              - 1
              description: Execute List Permission
              example: 0
            Read:
              type: integer
              enum:
              - 0
              - 1
              description: Read List Permission
              example: 0
            Show:
              type: integer
              enum:
              - 0
              - 1
              description: Read List Permission
              example: 0
            Write:
              type: integer
              enum:
              - 0
              - 1
              description: Write List Permission
              example: 0
            Share:
              type: integer
              enum:
              - 0
              - 1
              description: Share List Permission
              example: 0
          minProperties: 1
        visibilityOption:
          type:
          - boolean
          - 'null'
          enum:
          - true
          - false
          - null
          description: List Visibility
          default: null
          example: true
      required:
      - Name
    UpdateListBodyModel:
      type: object
      description: Create (and Update) List Body Model
      properties:
        loaded:
          type:
          - boolean
          - 'null'
          enum:
          - true
          - false
          - null
          default: null
          example: false
        Name:
          type: string
          description: List Name
          example: List1
        Description:
          type: string
          description: List Description
          example: Test1
        Tags:
          type:
          - string
          - 'null'
          description: List Tags
          example: '"Tag1,Tag2"'
        Publishers:
          type: array
          description: List Publishers (Array with publishers ids)
          items:
            type: integer
            format: int32
          example:
          - 311280
          - 312816
          - 572313
          - 572314
          - 572319
          - 572320
          - 572330
          - 572331
          - 595106
        permissions:
          type: object
          description: List permissions
          properties:
            Create:
              type: integer
              enum:
              - 0
              - 1
              description: Create List Permission
              example: 0
            Delete:
              type: integer
              enum:
              - 0
              - 1
              description: Delete List Permission
              example: 1
            Enable:
              type: integer
              enum:
              - 0
              - 1
              description: Enable List Permission
              example: 1
            Execute:
              type: integer
              enum:
              - 0
              - 1
              description: Execute List Permission
              example: 0
            Read:
              type: integer
              enum:
              - 0
              - 1
              description: Read List Permission
              example: 0
            Show:
              type: integer
              enum:
              - 0
              - 1
              description: Read List Permission
              example: 0
            Write:
              type: integer
              enum:
              - 0
              - 1
              description: Write List Permission
              example: 0
            Share:
              type: integer
              enum:
              - 0
              - 1
              description: Share List Permission
              example: 0
          minProperties: 1
        visibilityOption:
          type:
          - boolean
          - 'null'
          enum:
          - true
          - false
          - null
          description: List Visibility
          default: null
          example: true
      minProperties: 1
    ListModel:
      type: object
      properties:
        type:
          type: string
          enum:
          - List
          description: List
          example: List
        href:
          type: string
          description: CreatorIQ API URL to get a single list
          example: https://apis.creatoriq.com/crm/v1/api/list/202179
        List:
          $ref: '#/components/schemas/ListInCollection'
      required:
      - type
      - href
      - List
    ErrorResponse400:
      type: object
      description: Exception
      properties:
        type:
          type: string
          description: Exception type
          example: CoreException
        CoreException:
          type: object
          description: Exception information
          properties:
            code:
              type: integer
              description: Exception status code
              format: int32
              example: 400
            message:
              type: string
              description: Exception message
              example: No input data found (or The name field is required).
      required:
      - type
    ListInCollection:
      type: object
      properties:
        type:
          type: string
          description: Type
          example: List
        href:
          type: string
          description: Href
          example: https://apis.creatoriq.com/crm/v1/api/list/1
        List:
          $ref: '#/components/schemas/ListInCollectionItem'
      required:
      - type
      - href
      - List
    ListsCollectionModel:
      type: object
      properties:
        type:
          type: string
          enum:
          - ListsCollection
          description: Type of Search
          example: ListsCollection
        href:
          type: string
          description: CreatorIQ API URL to get a collection of lists
          example: https://apis.creatoriq.com/crm/v1/api/lists
        count:
          type: integer
          description: Number of records in current response
          example: 20
        total:
          type: integer
          description: Total number of found rows
          example: 1704
        page:
          type: integer
          description: Current page
          example: 2
        ListsCollection:
          type: array
          items:
            $ref: '#/components/schemas/ListInCollection'
      required:
      - type
      - href
      - count
      - total
      - page
      - ListsCollection
    ListInCollectionItem:
      type: object
      properties:
        Id:
          type: integer
          description: List Id
          format: int32
          example: 8
        Name:
          type: string
          description: List Name
          example: List 3
        Description:
          type: string
          description: List Description
          example: Test1
        DivisionId:
          type:
          - integer
          - 'null'
          description: Division Id
          format: int32
          default: null
          example: 123
        DivisionName:
          type:
          - string
          - 'null'
          description: Division Name
          default: null
          example: Division Number 1
        Tags:
          type:
          - string
          - 'null'
          description: List Tags
          example: '"IT"'
        Type:
          type:
          - string
          - 'null'
          description: List Type
          example: Some Type
        Visibility:
          type:
          - boolean
          - 'null'
          enum:
          - true
          - false
          - null
          description: List Visibility
          default: null
          example: true
        CreatedAt:
          type: string
          description: List Created Time
          example: '2016-08-16 09:52:28'
        CreatedBy:
          type: string
          description: List Created Person
          example: John Snow
        LastUpdated:
          type: string
          description: List Last Updated time
          example: '2017-07-05 14:27:11'
        UpdatedBy:
          type:
          - string
          - 'null'
          description: List Updated By
          example: John Snow
        Publishers:
          type: array
          description: List Publishers (Array with publishers ids)
          items:
            oneOf:
            - type: integer
              format: int32
          example:
          - 311280
          - 312816
          - 572313
          - 572314
          - 572319
          - 572320
          - 572330
          - 572331
          - 595106
        Public:
          type: boolean
          description: List Public flag
          example: true
        CommentsCount:
          type: integer
          description: List Comments Count
          format: int32
          example: 0
      required:
      - Id
      - Name
      - Description
      - DivisionId
      - DivisionName
      - Tags
      - Type
      - Visibility
      - CreatedAt
      - CreatedBy
      - LastUpdated
      - UpdatedBy
      - Publishers
      - Public
      - CommentsCount
    ErrorResponse403:
      type: object
      description: Exception
      properties:
        type:
          type: string
          description: Exception type
          example: CoreException
        CoreException:
          type: object
          description: Exception information
          properties:
            code:
              type: integer
              description: Exception status code
              format: int32
              example: 403
            message:
              type: string
              description: Exception message
              example: Access was denied due to the API has insufficient access permissions
      required:
      - type
    ErrorResponse401:
      type: object
      description: Exception
      properties:
        type:
          type: string
          description: Exception type
          example: CoreException
        CoreException:
          type: object
          description: Exception information
          properties:
            code:
              type: integer
              description: Exception status code
              format: int32
              example: 401
            message:
              type: string
              description: Exception message
              example: Incorrect x-api-key
      required:
      - type
    PublishersListBody:
      type: object
      properties:
        PublisherId:
          type: array
          description: Unique publishers id array
          items:
            type: integer
            format: int32
            example: 8082160
          example:
          - 8082160
          - 8082161
    ErrorResponse404:
      type: object
      description: Exception
      properties:
        type:
          type: string
          description: Exception type
          example: CoreException
        CoreException:
          type: object
          description: Exception information
          properties:
            code:
              type: integer
              description: Exception status code
              format: int32
              example: 404
            message:
              type: string
              description: Exception message
              example: The list hasn't been found
      required:
      - type
    PublisherList400Model:
      type: object
      description: Exception
      properties:
        type:
          type: string
          description: Exception type
          example: CoreException
        CoreException:
          type: object
          description: Exception information
          properties:
            code:
              type: integer
              description: Exception status code
              format: int32
              example: 400
            message:
              type: string
              description: Exception message
              example: Publisher Id is mandatory!
      required:
      - type
  securitySchemes:
    apiKey:
      type: apiKey
      name: x-api-key
      in: header