{
  "info": {
    "name": "Bannerbite — mcp.ai",
    "description": "REST API for the Bannerbite MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/bannerbite",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "bannerbite_generate_media",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/generate/media",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "generate",
            "media"
          ]
        },
        "description": "Queue one asynchronous image, video, or overlay render from a Bannerbite bite. WARNING: a valid call consumes render credits and queues external asynchronous work; it may also send completion updates ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"audio\": {},\n  \"scene\": 0,\n  \"media_type\": \"\",\n  \"scene_data\": \"\",\n  \"webhook_url\": \"\",\n  \"notification_email\": \"\",\n  \"bite_id_or_access_token\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bannerbite_get_bite",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/bite",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "bite"
          ]
        },
        "description": "Return one Bannerbite bite by its numeric bite ID, including template and output-size details; fail explicitly when the bite does not exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"bite_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bannerbite_get_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "project"
          ]
        },
        "description": "Return one Bannerbite project by its numeric project ID; fail explicitly when the project does not exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bannerbite_get_scene_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/scene/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "scene",
            "data"
          ]
        },
        "description": "Return the editable scene fields for a Bannerbite bite so their names and current values can be used in a render request.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"bite_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bannerbite_list_bites",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/bites",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "bites"
          ]
        },
        "description": "Return one provider page of Bannerbite bites in a project, up to 100 bites; the API exposes no verified way to request another page.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"project_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bannerbite_list_projects",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/projects",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "projects"
          ]
        },
        "description": "Return one provider page of projects owned by the connected Bannerbite account, up to 100 projects; the API exposes no verified way to request another page.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}