{
  "info": {
    "name": "Apiflash — mcp.ai",
    "description": "REST API for the Apiflash 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/apiflash",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "apiflash_batch_capture_screenshots",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/batch/capture/screenshots",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "batch",
            "capture",
            "screenshots"
          ]
        },
        "description": "Tool to capture screenshots for multiple URLs in a single request. Use when you have a list of pages to snapshot in batch.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"urls\": \"\",\n  \"fresh\": false,\n  \"width\": 0,\n  \"format\": \"\",\n  \"height\": 0,\n  \"full_page\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apiflash_capture_screenshot",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/capture/screenshot",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "capture",
            "screenshot"
          ]
        },
        "description": "Tool to capture a screenshot of a website. Returns a JSON response with URLs to the screenshot (and optionally extracted HTML/text). Supports extensive customization including viewport dimensions, ful",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"js\": \"\",\n  \"css\": \"\",\n  \"ttl\": 0,\n  \"url\": \"\",\n  \"crop\": \"\",\n  \"delay\": 0,\n  \"fresh\": false,\n  \"proxy\": \"\",\n  \"width\": 0,\n  \"format\": \"\",\n  \"height\": 0,\n  \"no_ads\": false,\n  \"s3_key\": \"\",\n  \"cookies\": \"\",\n  \"element\": \"\",\n  \"headers\": \"\",\n  \"quality\": 0,\n  \"accuracy\": 0,\n  \"latitude\": 0,\n  \"wait_for\": \"\",\n  \"full_page\": false,\n  \"longitude\": 0,\n  \"s3_bucket\": \"\",\n  \"s3_region\": \"\",\n  \"time_zone\": \"\",\n  \"user_agent\": \"\",\n  \"wait_until\": \"\",\n  \"ip_location\": \"\",\n  \"no_tracking\": false,\n  \"s3_endpoint\": \"\",\n  \"scroll_page\": false,\n  \"transparent\": false,\n  \"extract_html\": false,\n  \"extract_text\": false,\n  \"scale_factor\": 0,\n  \"response_type\": \"\",\n  \"s3_secret_key\": \"\",\n  \"fail_on_status\": \"\",\n  \"accept_language\": \"\",\n  \"element_overlap\": false,\n  \"thumbnail_width\": 0,\n  \"s3_access_key_id\": \"\",\n  \"no_cookie_banners\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apiflash_capture_website_screenshot_post",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/capture/website/screenshot/post",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "capture",
            "website",
            "screenshot",
            "post"
          ]
        },
        "description": "Capture a screenshot of any website. Returns a URL to the generated screenshot image. Supports full-page captures, custom viewport sizes, and multiple image formats (JPEG, PNG, WebP). Use this tool wh",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"delay\": 0,\n  \"fresh\": false,\n  \"width\": 0,\n  \"format\": \"\",\n  \"height\": 0,\n  \"quality\": 0,\n  \"full_page\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apiflash_get_quota_information",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/quota/information",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "quota",
            "information"
          ]
        },
        "description": "Tool to retrieve current API quota usage and limits. Use after authentication to monitor usage and reset times.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apiflash_get_screenshot_metadata",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/screenshot/metadata",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "screenshot",
            "metadata"
          ]
        },
        "description": "Retrieve metadata (file size, MIME type) for a previously captured screenshot. Use this tool when you need to check the size or format of a screenshot without downloading the full image. Requires the ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}