{
  "info": {
    "name": "ScreenshotOne — mcp.ai",
    "description": "REST API for the ScreenshotOne 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/screenshotone",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "screenshotone_get_usage",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/usage",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "usage"
          ]
        },
        "description": "Tool to retrieve current API plan usage information. Returns total requests allowed, available requests remaining, used requests count, and concurrency limits for the current billing period.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "screenshotone_list_devices",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/devices",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "devices"
          ]
        },
        "description": "Tool to retrieve the list of supported devices for viewport emulation. Use when you need to get available device IDs and their viewport configurations for device emulation in screenshot operations.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "screenshotone_take_animated_screenshot",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/take/animated/screenshot",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "take",
            "animated",
            "screenshot"
          ]
        },
        "description": "This tool captures an animated screenshot (video or GIF) of a given website URL. It allows customization of the animation format, duration, viewport dimensions, and animation scenario (e.g., scrolling",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"delay\": 0,\n  \"width\": 0,\n  \"clip_x\": 0,\n  \"clip_y\": 0,\n  \"format\": \"\",\n  \"height\": 0,\n  \"duration\": 0,\n  \"scenario\": \"\",\n  \"block_ads\": false,\n  \"full_page\": false,\n  \"scroll_by\": 0,\n  \"clip_width\": 0,\n  \"clip_height\": 0,\n  \"scroll_back\": false,\n  \"aspect_ratio\": \"\",\n  \"scroll_delay\": 0,\n  \"scroll_easing\": \"\",\n  \"viewport_width\": 0,\n  \"omit_background\": false,\n  \"scroll_complete\": false,\n  \"scroll_duration\": 0,\n  \"viewport_height\": 0,\n  \"scroll_start_delay\": 0,\n  \"device_scale_factor\": 0,\n  \"scroll_to_end_after\": 0,\n  \"scroll_try_navigate\": false,\n  \"block_cookie_banners\": false,\n  \"scroll_till_selector\": \"\",\n  \"scroll_back_algorithm\": \"\",\n  \"scroll_navigate_after\": 0,\n  \"scroll_navigate_to_url\": \"\",\n  \"scroll_start_immediately\": false,\n  \"scroll_back_after_duration\": 0,\n  \"scroll_navigate_link_hints\": \"\",\n  \"scroll_stop_after_duration\": 0,\n  \"scroll_till_selector_adjust_top\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "screenshotone_take_bulk_screenshots",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/take/bulk/screenshots",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "take",
            "bulk",
            "screenshots"
          ]
        },
        "description": "Tool to take multiple screenshots in a single request with shared defaults and individual overrides. Use when you need to capture screenshots of multiple URLs or the same URL with different parameters",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"execute\": false,\n  \"options\": {},\n  \"optimize\": false,\n  \"requests\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "screenshotone_take_screenshot",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/take/screenshot",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "take",
            "screenshot"
          ]
        },
        "description": "Tool to generate a screenshot or PDF of a website, render HTML, or Markdown using POST request. Use when you need to capture webpage content in various formats (PNG, JPEG, WebP, PDF, HTML). Supports b",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"html\": \"\",\n  \"cache\": false,\n  \"delay\": 0,\n  \"format\": \"\",\n  \"markdown\": \"\",\n  \"block_ads\": false,\n  \"dark_mode\": false,\n  \"block_chats\": false,\n  \"response_type\": \"\",\n  \"viewport_width\": 0,\n  \"viewport_height\": 0,\n  \"device_scale_factor\": 0,\n  \"block_cookie_banners\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}