FreeWheel Media Bid Model API

The Bid Model API from FreeWheel Media — 1 operation(s) for bid model.

Operations 3

POST /bid_model bid_model #
GET /bid_model bid_model #
PUT /bid_model bid_model #

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-bid-model-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-bid-model-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: buzz Bid Model API
  version: '0.5'
servers:
- url: https://buzz-key.api.beeswax.com/rest/
security:
- {}
tags:
- name: Bid Model
paths:
  /bid_model:
    post:
      summary: bid_model
      description: ''
      operationId: bid-models-post
      requestBody:
        content:
          application/json:
            schema:
              type: object
              required:
              - bid_model_name
              properties:
                bid_model_name:
                  type: string
                  description: Name of the Bid Model, e.g. "CPI Model"
                value_type:
                  type: string
                  description: Valid values are `BID`, `MULTIPLIER`, or `BUDGET_WEIGHT`. Determines whether the values in the Bid Model should be multiplied by the base bid at the Line Item level or used instead of that bid. `BUDGET_WEIGHT` should be used for Delivery Models.
                  default: MULTIPLIER
                alternative_id:
                  type: string
                  description: An alternative ID to lookup the Bid Model, if desired
                notes:
                  type: string
                  description: Notes, up to 255 chars
                active:
                  type: boolean
                  description: Is it active?
                  default: false
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value: "{\n    \"success\": true,\n    \"message\": \"bid_model created with ID = 1\",\n    \"payload\": {\n        \"id\": 1\n    }\n}"
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                    default: true
                  message:
                    type: string
                    example: bid_model created with ID = 1
                  payload:
                    type: object
                    properties:
                      id:
                        type: integer
                        example: 1
                        default: 0
      deprecated: false
      x-readme:
        code-samples:
        - language: curl
          code: curl -X POST "[host]/rest/bid_model" -b cookies.txt -d '{"bid_model_name":"CPI Model", "value_type":"BID", "active":1}'
        samples-languages:
        - curl
      tags:
      - Bid Model
    get:
      summary: bid_model
      description: ''
      operationId: bid-models-get
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                bid_model_id:
                  type: integer
                  description: Unique identifier for the Bid Model
                  format: int32
                bid_model_name:
                  type: string
                  description: Name of the Bid Model, e.g. "CPI Model"
                value_type:
                  type: string
                  description: Valid values are `BID`, `MULTIPLIER`,  or `BUDGET_WEIGHT`. Determines whether the values in the Bid Model should be multiplied by the base bid at the Line Item level or used instead of that bid. `BUDGET_WEIGHT` should be used for Delivery Models.
                  default: MULTIPLIER
                alternative_id:
                  type: string
                  description: An alternative ID to lookup the Bid Model, if desired
                active:
                  type: boolean
                  description: Is it active?
                  default: false
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value: "{\n    \"success\": true,\n    \"payload\": [\n        {\n            \"bid_model_id\": 1,\n            \"bid_model_name\": \"CPI Model\",\n            \"value_type\": \"BID\",\n            \"current_version\": null,\n            \"account_id\": 1,\n            \"create_date\": \"2018-02-20 17:24:40\",\n            \"update_date\": \"2018-02-20 17:24:40\",\n            \"alternative_id\": null,\n            \"notes\": null,\n            \"active\": true,\n            \"buzz_key\": \"stingersbx\",\n        }\n    ]\n}"
      deprecated: false
      x-readme:
        code-samples:
        - language: curl
          code: curl -X GET "[host]/rest/bid_model" -b cookies.txt -d '{"bid_model_name":"CPI Model"}'
        samples-languages:
        - curl
      tags:
      - Bid Model
    put:
      summary: bid_model
      description: ''
      operationId: bid-models-put
      requestBody:
        content:
          application/json:
            schema:
              type: object
              required:
              - bid_model_id
              properties:
                bid_model_id:
                  type: integer
                  description: The unique ID of the Bid Model to be updated
                  format: int32
                bid_model_name:
                  type: string
                  description: Name of the Bid Model, e.g. "CPI Model"
                value_type:
                  type: string
                  description: Valid values are `BID`, `MULTIPLIER`,  or `BUDGET_WEIGHT`. Determines whether the values in the Bid Model should be multiplied by the base bid at the Line Item level or used instead of that bid. `BUDGET_WEIGHT` should be used for Delivery Models.
                  default: MULTIPLIER
                current_version:
                  type: integer
                  description: The Bid Model Version to use.
                  format: int32
                alternative_id:
                  type: string
                  description: An alternative ID to lookup the Bid Model, if desired
                notes:
                  type: string
                  description: Notes, up to 255 chars
                active:
                  type: boolean
                  description: Is it active?
                  default: false
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value: "{\n    \"success\": true,\n    \"payload\": [\n        {\n            \"id\": 1,\n            \"success\": true,\n            \"message\": \"bid_model updated with ID 1\"\n        }\n    ],\n    \"message\": \"bid_model update: 1 updated successfully\"\n}"
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                    default: true
                  payload:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: integer
                          example: 1
                          default: 0
                        success:
                          type: boolean
                          example: true
                          default: true
                        message:
                          type: string
                          example: bid_model updated with ID 1
                  message:
                    type: string
                    example: 'bid_model update: 1 updated successfully'
      deprecated: false
      x-readme:
        code-samples:
        - language: curl
          code: curl -X PUT "[host]/rest/bid_model" -b cookies.txt -d '{"bid_model_id":12, "bid_model_name":"CPI Model", "value_type":"BID", "active":1}'
        samples-languages:
        - curl
      tags:
      - Bid Model
x-readme:
  headers: []
  explorer-enabled: true
  proxy-enabled: true
x-readme-fauxas: true