{
  "info": {
    "name": "Imgix — mcp.ai",
    "description": "REST API for the Imgix 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/imgix",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "imgix_add_asset_from_origin",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/asset/from/origin",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "asset",
            "from",
            "origin"
          ]
        },
        "description": "Tool to queue a path from your origin to be added to the Asset Manager. Imports the asset metadata without uploading the asset itself. Use when you need to register an existing origin-hosted file with",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"source_id\": \"\",\n  \"origin_path\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_auto",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/auto",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "auto"
          ]
        },
        "description": "Apply automatic image optimizations using imgix's auto parameter. Use this tool to automatically optimize images for web delivery. Common use cases: - Reduce file sizes with 'compress' for faster page",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"auto\": \"\",\n  \"path\": \"\",\n  \"source\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_blend",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/blend",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "blend"
          ]
        },
        "description": "Tool to overlay an image, text, or color onto a base image using imgix blending parameters. Use after specifying the base image URL and blend parameters to composite layers.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"blend\": \"\",\n  \"blend64\": \"\",\n  \"blend_h\": 0,\n  \"blend_w\": 0,\n  \"blend_x\": 0,\n  \"blend_y\": 0,\n  \"blend_fit\": \"\",\n  \"blend_pad\": 0,\n  \"blend_crop\": \"\",\n  \"blend_mode\": \"\",\n  \"blend_size\": \"\",\n  \"blend_align\": \"\",\n  \"blend_alpha\": 0,\n  \"blend_color\": \"\",\n  \"base_image_url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_blend_align",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/blend/align",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "blend",
            "align"
          ]
        },
        "description": "Tool to align the overlay relative to the base image when blending. Use after constructing a base Imgix URL to specify horizontal and vertical alignment (e.g., 'left,top').",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"vertical\": \"\",\n  \"image_url\": \"\",\n  \"horizontal\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_blend_color",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/blend/color",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "blend",
            "color"
          ]
        },
        "description": "Tool to blend a solid color over an image using CSS keyword or hex. Use when you need to apply color overlay transformations to an existing image URL.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"image_url\": \"\",\n  \"blend_mode\": \"\",\n  \"blend_alpha\": 0,\n  \"blend_color\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_blend_x",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/blend/x",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "blend",
            "x"
          ]
        },
        "description": "Position an overlay image horizontally on a base image using imgix's blend-x parameter. Use this tool when you need to place an overlay (image or color) at a specific horizontal offset from the left e",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"blend\": \"\",\n  \"blend_x\": 0,\n  \"image_url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_border",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/border",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "border"
          ]
        },
        "description": "Tool to draw a border around an image. Use when you need to overlay a border without resizing.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"color\": \"\",\n  \"width\": 0,\n  \"image_path\": \"\",\n  \"source_domain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_bri",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/bri",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "bri"
          ]
        },
        "description": "Tool to adjust image brightness. Use when you need to modify an image's brightness level (−100 to 100) by supplying your source domain and asset path.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"bri\": 0,\n  \"source\": \"\",\n  \"asset_path\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_cancel_upload_session",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/cancel/upload/session",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "cancel",
            "upload",
            "session"
          ]
        },
        "description": "Tool to cancel an Imgix Asset Manager upload session. Use when you need to abort an in-progress or abandoned upload flow and clean up the session.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"source_id\": \"\",\n  \"session_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_ch",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/ch",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "ch"
          ]
        },
        "description": "Tool to opt in to Client Hints. Use when you want Imgix URLs to adapt based on browser headers (Width, DPR, Save-Data).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ch\": \"\",\n  \"image_path\": \"\",\n  \"source_domain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_close_upload_session",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/close/upload/session",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "close",
            "upload",
            "session"
          ]
        },
        "description": "Tool to close an Imgix Asset Manager upload session after the client uploads to the presigned URL. Use after uploading a file to expedite asset processing. Closing is strongly recommended by imgix.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"source_id\": \"\",\n  \"session_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_con",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/con",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "con"
          ]
        },
        "description": "Tool to adjust image contrast. Use when you need to modify an image's contrast level (−100 to 100).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"con\": 0,\n  \"source\": \"\",\n  \"asset_path\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_create_imgix_source",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/imgix/source",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "imgix",
            "source"
          ]
        },
        "description": "Tool to create and deploy a new imgix Source. Use when you need to add a new image source with deployment configuration for S3, Web Folder, Web Proxy, GCS, Azure, or S3-compatible storage. Requires so",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"data\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_create_upload_session",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/upload/session",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "upload",
            "session"
          ]
        },
        "description": "Tool to create an Imgix Asset Manager upload session and return a presigned URL for client-side upload. Use when you need to upload a new image to a storage-backed imgix Source without requiring exter",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"source_id\": \"\",\n  \"origin_path\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_cs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/cs",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "cs"
          ]
        },
        "description": "Tool to set or strip output color space/profile on an Imgix image. Use when optimizing compatibility and file size (e.g., cs=strip for smaller metadata).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cs\": \"\",\n  \"image_path\": \"\",\n  \"source_domain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_dl",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/dl",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "dl"
          ]
        },
        "description": "Download an asset from an Imgix source with optional custom filename. Use this tool when you need to: - Download images or assets from an Imgix CDN source - Force a specific download filename (via 'dl",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dl\": \"\",\n  \"dl64\": \"\",\n  \"path\": \"\",\n  \"source\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_dpi",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/dpi",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "dpi"
          ]
        },
        "description": "Tool to embed DPI (dots-per-inch) metadata for print output on an Imgix-rendered image. Use when preparing images for print to set accurate DPI. Supports JPEG and PNG only.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fm\": \"\",\n  \"dpi\": 0,\n  \"source\": \"\",\n  \"asset_path\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_dpr",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/dpr",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "dpr"
          ]
        },
        "description": "Tool to set device pixel ratio for an Imgix image. Use when rendering at specific display densities to ensure correct sharpness. Example: 'dpr=2&w=500&h=300' doubles resolution relative to dimensions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"h\": 0,\n  \"w\": 0,\n  \"dpr\": 0,\n  \"source\": \"\",\n  \"asset_path\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_expires",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/expires",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "expires"
          ]
        },
        "description": "Tool to append an expiration parameter to an Imgix URL so it returns 404 after a given time. Use when you want the image URL to stop serving beyond a specific UNIX timestamp.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"path\": \"\",\n  \"expires\": 0,\n  \"source_domain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_fit",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fit",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fit"
          ]
        },
        "description": "Tool to control how an image fits target dimensions after resizing. Use when specifying width, height, and fit behavior.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"h\": \"\",\n  \"w\": \"\",\n  \"fit\": \"\",\n  \"facepad\": 0,\n  \"faceindex\": 0,\n  \"image_path\": \"\",\n  \"source_domain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_fm",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fm",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fm"
          ]
        },
        "description": "Tool to choose output file format for the rendered asset. Use after specifying the asset path when you need to convert its format.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fm\": \"\",\n  \"path\": \"\",\n  \"source\": \"\",\n  \"lossless\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_force_aspect_ratio",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/force/aspect/ratio",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "force",
            "aspect",
            "ratio"
          ]
        },
        "description": "Tool to force a target aspect ratio on an Imgix image. Use when a specific W:H frame is needed after choosing fit=crop or fit=fill. Example: 'ar=16:9&fit=crop&w=800' yields a 16:9, 800px-wide URL.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"h\": \"\",\n  \"w\": \"\",\n  \"ar\": \"\",\n  \"fit\": \"\",\n  \"crop\": \"\",\n  \"fill\": \"\",\n  \"path\": \"\",\n  \"fill_color\": \"\",\n  \"source_domain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_get_source",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/source",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "source"
          ]
        },
        "description": "Tool to retrieve details for a single imgix Source by its ID. Returns the source configuration including deployment status, type, and settings.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"source_id\": \"\",\n  \"fields_sources\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_get_upload_session_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/upload/session/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "upload",
            "session",
            "status"
          ]
        },
        "description": "Tool to retrieve the status of an Imgix Asset Manager upload session. Use when you need to check the current state (PENDING/CLOSED/COMPLETE/CANCELED) of an upload session for polling or verification a",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"source_id\": \"\",\n  \"session_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_h",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/h",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "h"
          ]
        },
        "description": "Tool to set output image height in pixels or as a ratio of the source height. Use after constructing an Imgix URL to adjust only height.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"h\": \"\",\n  \"source\": \"\",\n  \"asset_path\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_high",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/high",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "high"
          ]
        },
        "description": "Tool to adjust highlight tonal mapping (−100 to 0). Use when preserving detail in bright areas of an image.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"high\": 0,\n  \"source\": \"\",\n  \"asset_path\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_list_assets",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/assets",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "assets"
          ]
        },
        "description": "Tool to retrieve a paginated list of assets in an imgix Source. Use when you need to list, filter, or search assets with cursor-based pagination and sorting.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"source_id\": \"\",\n  \"page_limit\": 0,\n  \"filter_tags\": \"\",\n  \"page_cursor\": \"\",\n  \"filter_colors\": \"\",\n  \"filter_keyword\": \"\",\n  \"filter_categories\": \"\",\n  \"filter_face_count\": \"\",\n  \"filter_has_frames\": false,\n  \"filter_media_kind\": \"\",\n  \"filter_origin_path\": \"\",\n  \"filter_warning_racy\": \"\",\n  \"filter_warning_adult\": \"\",\n  \"filter_warning_spoof\": \"\",\n  \"filter_warning_medical\": \"\",\n  \"filter_warning_violence\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_list_reports",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/reports",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "reports"
          ]
        },
        "description": "Tool to retrieve a list of all available reports for your imgix account. Use when you need to access analytics and usage information. Reports are generated daily and retained for 90 days.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"fields_reports\": \"\",\n  \"filter_completed\": false,\n  \"filter_report_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_list_sources",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/sources",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "sources"
          ]
        },
        "description": "Tool to list all Sources for an account. Use when you need to retrieve and paginate through sources with optional sorting and filtering.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"page_size\": 0,\n  \"filter_name\": \"\",\n  \"page_number\": 0,\n  \"fields_sources\": \"\",\n  \"filter_enabled\": false,\n  \"filter_deployment_type\": \"\",\n  \"filter_deployment_region\": \"\",\n  \"filter_deployment_s3_bucket\": \"\",\n  \"filter_deployment_gcs_bucket\": \"\",\n  \"filter_deployment_bucket_name\": \"\",\n  \"filter_deployment_azure_bucket\": \"\",\n  \"filter_deployment_custom_domains\": \"\",\n  \"filter_deployment_imgix_subdomains\": \"\",\n  \"filter_deployment_storage_provider\": \"\",\n  \"filter_deployment_webfolder_base_url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_mark_base",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/mark/base",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "mark",
            "base"
          ]
        },
        "description": "Tool to set the base URL prepended to the watermark image path. Use when you need to host watermark assets on a custom domain or CDN.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"mark_base\": \"\",\n  \"image_path\": \"\",\n  \"source_domain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_mark_fit",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/mark/fit",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "mark",
            "fit"
          ]
        },
        "description": "Tool to set how a watermark fits its target dimensions. Use when applying a watermark and you need control over fitting behavior (e.g., selecting 'scale'). For 'crop', ensure 'mark-w' and 'mark-h' are",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"mark_fit\": \"\",\n  \"image_url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_mark_h",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/mark/h",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "mark",
            "h"
          ]
        },
        "description": "Tool to set watermark height on an Imgix URL in pixels or as a ratio of the watermark source. Use when adjusting overlay height while preserving aspect ratio.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"mark\": \"\",\n  \"mark-h\": \"\",\n  \"image_url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_mark_pad",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/mark/pad",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "mark",
            "pad"
          ]
        },
        "description": "Tool to set pixel padding between a watermark and the image edge or between tiled watermarks. Use after configuring watermark URL and alignment to adjust spacing precisely.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"mark-pad\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_mark_w",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/mark/w",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "mark",
            "w"
          ]
        },
        "description": "Tool to set watermark width. Use when you need to enforce a watermark's width in pixels or as a proportion. Use after specifying watermark source.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"mark_w\": \"\",\n  \"image_url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_mask",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/mask",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "mask"
          ]
        },
        "description": "Tool to apply a mask to an image. Use when needing rounded corners, ellipse shapes, or image-based masks.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"mask\": \"\",\n  \"mask64\": \"\",\n  \"mask-bg\": \"\",\n  \"image_path\": \"\",\n  \"corner-radius\": \"\",\n  \"source_domain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_max_h",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/max/h",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "max",
            "h"
          ]
        },
        "description": "Constrain the maximum height of an imgix image. This tool applies fit=crop along with the max-h parameter to ensure images do not exceed the specified height. Ideal for vertically-scrolling feeds or g",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"max-h\": 0,\n  \"image_path\": \"\",\n  \"source_domain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_max_w",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/max/w",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "max",
            "w"
          ]
        },
        "description": "Tool to set the maximum output width on an Imgix URL. Use when you need to cap width (works only with fit=crop). Call after specifying fit=crop on the URL.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"max_w\": 0,\n  \"image_path\": \"\",\n  \"source_domain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_palette",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/palette",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "palette"
          ]
        },
        "description": "Tool to extract a color palette from an image in CSS or JSON form. Use when you need to analyze an image's dominant colors after any transformations.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"colors\": 0,\n  \"prefix\": \"\",\n  \"palette\": \"\",\n  \"signature\": \"\",\n  \"image_path\": \"\",\n  \"source_domain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_prefix",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/prefix",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "prefix"
          ]
        },
        "description": "Tool to set class-name prefix for CSS palette output. Use when customizing CSS selectors for color-palette styling.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"colors\": 0,\n  \"prefix\": \"\",\n  \"palette\": \"\",\n  \"image_path\": \"\",\n  \"source_domain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_purge_imgix_asset",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/purge/imgix/asset",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "purge",
            "imgix",
            "asset"
          ]
        },
        "description": "Tool to purge an asset from the imgix cache. Use when you need to invalidate cached versions of an image and force imgix to fetch a fresh version from origin on the next request.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"source_id\": \"\",\n  \"sub_image\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_q",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/q",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "q"
          ]
        },
        "description": "Tool to set output quality for lossy formats. Use when adjusting image compression quality for lossy image delivery.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": 0,\n  \"image_path\": \"\",\n  \"source_domain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_rect",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/rect",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "rect"
          ]
        },
        "description": "Tool to select a source-image rectangle region in Imgix before other resizing. Use when you need to crop a specific region (x,y,w,h) of the source image.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"h\": \"\",\n  \"w\": \"\",\n  \"x\": \"\",\n  \"y\": \"\",\n  \"image_path\": \"\",\n  \"source_domain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_rot",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/rot",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "rot"
          ]
        },
        "description": "Tool to rotate an image on Imgix. Use when you need to apply a counter-clockwise rotation (0–359°) with optional mode control.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"rot\": 0,\n  \"path\": \"\",\n  \"source\": \"\",\n  \"rot-type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_rot_type",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/rot/type",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "rot",
            "type"
          ]
        },
        "description": "Tool to control rotation behavior when `rot` is applied. Use after applying a `rot` parameter to choose between pivot (show entire image) or straighten (zoom and crop) behavior.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"rot-type\": \"\",\n  \"image_url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_txt",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/txt",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "txt"
          ]
        },
        "description": "Tool to render a single-line UTF-8 text overlay on an image. Use when you need simple text captions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"txt\": \"\",\n  \"txt64\": \"\",\n  \"image_url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_txt_align",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/txt/align",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "txt",
            "align"
          ]
        },
        "description": "Tool to align a text overlay on an Imgix image. Use when you need to position text by specifying vertical (top/middle/bottom) and horizontal (left/center/right) alignment.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"vertical\": \"\",\n  \"horizontal\": \"\",\n  \"image_path\": \"\",\n  \"source_domain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_txt_color",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/txt/color",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "txt",
            "color"
          ]
        },
        "description": "Tool to set text overlay color on an Imgix image. Use when customizing text overlays with CSS color keywords or hex codes.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"image_url\": \"\",\n  \"txt_color\": \"\",\n  \"txt_color64\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_txt_font",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/txt/font",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "txt",
            "font"
          ]
        },
        "description": "Tool to choose font family/style for overlay text. Use when customizing text appearance after specifying content. Supports CSS font categories and optional bold/italic flags.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"font\": \"\",\n  \"image_path\": \"\",\n  \"use_base64\": false,\n  \"source_domain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_txt_line",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/txt/line",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "txt",
            "line"
          ]
        },
        "description": "Tool to set outline width around overlay text. Use when styling text overlays on images.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"txt-line\": 0,\n  \"image_url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_txt_line_color",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/txt/line/color",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "txt",
            "line",
            "color"
          ]
        },
        "description": "Apply an outline color to text overlays on Imgix images. The text outline must first be enabled using the txt-line parameter (outline width > 0). This action fetches and returns the rendered image wit",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"color\": \"\",\n  \"encode\": false,\n  \"image_url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_txt_shad",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/txt/shad",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "txt",
            "shad"
          ]
        },
        "description": "Set text shadow strength for imgix text overlays. The txt-shad parameter controls the drop shadow intensity (0-10) applied to text rendered on images. Note: This parameter only has a visible effect wh",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"strength\": 0,\n  \"image_path\": \"\",\n  \"source_domain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_txt_size",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/txt/size",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "txt",
            "size"
          ]
        },
        "description": "Tool to set text font size in pixels. Use when overlaying text and needing precise control over font size. Specify after defining the text content; default is 12px.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"size\": 0,\n  \"image_path\": \"\",\n  \"source_domain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "imgix_update_source",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/source",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "source"
          ]
        },
        "description": "Tool to update an existing imgix Source. Use when you need to modify source name, deployment configuration, bucket settings, or other source attributes. Deployment changes trigger automatic redeployme",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"data\": {},\n  \"source_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}