FreeWheel Media List Item Bulk API

The List Item Bulk API from FreeWheel Media — 1 operation(s) for list item bulk.

Operations 1

POST /list_item_bulk list_item_bulk #

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/freewheel-media-list-item-bulk-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

freewheel-media-list-item-bulk-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: buzz List Item Bulk API
  version: '0.5'
servers:
- url: https://buzz-key.api.beeswax.com/rest/
security:
- {}
tags:
- name: List Item Bulk
paths:
  /list_item_bulk:
    post:
      summary: list_item_bulk
      description: ''
      operationId: list_item_bulk
      requestBody:
        content:
          application/json:
            schema:
              type: object
              required:
              - list_id
              - list_items
              properties:
                list_id:
                  type: integer
                  description: The unique ID of the list. List must be active.
                  format: int32
                list_items:
                  type: array
                  description: An array of items and optional values in format `{"list_item":"foo","value":1.2}`. Items are validated based on the type of the corresponding Custom List
                  items:
                    type: string
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value: "{\n    \"success\": true,\n    \"payload\": {\n        \"id\": 60\n    },\n    \"message\": \"list_item creation: 2 created successfully\"\n}"
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                    default: true
                  payload:
                    type: object
                    properties:
                      id:
                        type: integer
                        example: 60
                        default: 0
                  message:
                    type: string
                    example: 'list_item creation: 2 created successfully'
      deprecated: false
      x-readme:
        code-samples:
        - language: curl
          code: '#Bulk upload

            curl -X POST "[host]/rest/list_item_bulk" -b cookies.txt -d ''{"list_id":1, "list_items":[{"list_item":"foo","value":1.2},{"list_item":"bar"}]}''


            #File upload using list ID in format /upload/LIST_ID

            curl -X POST "[host]/rest/list_item_bulk/upload/123" -b cookies.txt -F ''list_item=@/local/path/foo.csv'''
        samples-languages:
        - curl
      tags:
      - List Item Bulk
x-readme:
  headers: []
  explorer-enabled: true
  proxy-enabled: true
x-readme-fauxas: true