{
  "info": {
    "name": "Contentdrips — mcp.ai",
    "description": "REST API for the Contentdrips 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/contentdrips",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "contentdrips_get_render_job",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/render/job",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "render",
            "job"
          ]
        },
        "description": "Get a Contentdrips render job's current state. Checks status once, fetches export URLs only after completion, and returns failed jobs as terminal data without polling automatically.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"job_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "contentdrips_start_ai_carousel_render",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/start/ai/carousel/render",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "start",
            "ai",
            "carousel",
            "render"
          ]
        },
        "description": "Generate carousel copy from a topic or supported HTTPS source URL and queue its render. This consumes render quota and may also consume AI credits.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"output\": \"\",\n  \"ai_input\": \"\",\n  \"ai_method\": \"\",\n  \"template_id\": \"\",\n  \"content_update\": \"\",\n  \"canvas_background\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "contentdrips_start_carousel_render",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/start/carousel/render",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "start",
            "carousel",
            "render"
          ]
        },
        "description": "Queue a manually authored multi-slide carousel as PNG files or a PDF from a known account-owned template. Queuing consumes render quota.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"output\": \"\",\n  \"branding\": {},\n  \"template_id\": \"\",\n  \"content_update\": \"\",\n  \"carousel_content\": {},\n  \"canvas_background\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "contentdrips_start_graphic_render",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/start/graphic/render",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "start",
            "graphic",
            "render"
          ]
        },
        "description": "Queue a PNG or PDF render from a known account-owned Contentdrips template and return the asynchronous job ID. Queuing consumes render quota.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"output\": \"\",\n  \"branding\": {},\n  \"template_id\": \"\",\n  \"content_update\": \"\",\n  \"canvas_background\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}