{
  "info": {
    "name": "ToolCenter API v1.2",
    "description": "All-in-one developer toolkit API \u2014 screenshots, PDFs, QR codes, metadata, and 14 more tools",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{api_key}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "base_url",
      "value": "https://api.toolcenter.dev/v1"
    },
    {
      "key": "api_key",
      "value": "your_api_key_here"
    }
  ],
  "item": [
    {
      "name": "Screenshots",
      "item": [
        {
          "name": "Capture Screenshot",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"url\": \"https://example.com\",\n  \"width\": 1920,\n  \"height\": 1080,\n  \"format\": \"png\",\n  \"fullPage\": true,\n  \"delay\": 1000,\n  \"darkMode\": false,\n  \"blockAds\": true,\n  \"blockCookieBanners\": true,\n  \"deviceScale\": 1,\n  \"quality\": 90\n}"
            },
            "url": {
              "raw": "{{base_url}}/screenshot",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "screenshot"
              ]
            },
            "description": "Capture a screenshot of a webpage or render HTML/Markdown to image"
          }
        },
        {
          "name": "HTML to Image",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"html\": \"<div style='padding: 20px; background: #f0f0f0;'><h1>Hello World</h1><p>This is a test HTML content.</p></div>\",\n  \"width\": 800,\n  \"height\": 600,\n  \"format\": \"png\"\n}"
            },
            "url": {
              "raw": "{{base_url}}/html-to-image",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "html-to-image"
              ]
            },
            "description": "Convert HTML/CSS to high-quality images"
          }
        },
        {
          "name": "Bulk Screenshots",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"requests\": [\n    {\n      \"url\": \"https://example.com\",\n      \"width\": 1920,\n      \"height\": 1080,\n      \"format\": \"png\"\n    },\n    {\n      \"url\": \"https://google.com\",\n      \"width\": 1280,\n      \"height\": 720,\n      \"format\": \"jpg\"\n    }\n  ]\n}"
            },
            "url": {
              "raw": "{{base_url}}/bulk/screenshot",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "bulk",
                "screenshot"
              ]
            },
            "description": "Capture multiple screenshots in a single request (max 20)"
          }
        }
      ]
    },
    {
      "name": "Documents",
      "item": [
        {
          "name": "Generate PDF",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"url\": \"https://example.com\",\n  \"format\": \"A4\",\n  \"landscape\": false,\n  \"printBackground\": true,\n  \"margin\": {\n    \"top\": \"1in\",\n    \"right\": \"1in\",\n    \"bottom\": \"1in\",\n    \"left\": \"1in\"\n  }\n}"
            },
            "url": {
              "raw": "{{base_url}}/pdf",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "pdf"
              ]
            },
            "description": "Generate PDF from a webpage or HTML content"
          }
        },
        {
          "name": "PDF from HTML",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"html\": \"<html><body><h1>Invoice</h1><p>Invoice #12345</p><table border='1'><tr><th>Item</th><th>Price</th></tr><tr><td>Product A</td><td>$100</td></tr></table></body></html>\",\n  \"format\": \"A4\",\n  \"landscape\": false,\n  \"printBackground\": true\n}"
            },
            "url": {
              "raw": "{{base_url}}/pdf",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "pdf"
              ]
            },
            "description": "Generate PDF from HTML content"
          }
        },
        {
          "name": "Bulk PDFs",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"requests\": [\n    {\n      \"url\": \"https://example.com\",\n      \"format\": \"A4\",\n      \"landscape\": false\n    },\n    {\n      \"html\": \"<h1>Sample Document</h1><p>Content here</p>\",\n      \"format\": \"Letter\"\n    }\n  ]\n}"
            },
            "url": {
              "raw": "{{base_url}}/bulk/pdf",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "bulk",
                "pdf"
              ]
            },
            "description": "Generate multiple PDFs in a single request (max 20)"
          }
        }
      ]
    },
    {
      "name": "SEO",
      "item": [
        {
          "name": "Extract Metadata",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"url\": \"https://toolcenter.dev\"\n}"
            },
            "url": {
              "raw": "{{base_url}}/metadata",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "metadata"
              ]
            },
            "description": "Extract metadata, Open Graph tags, and SEO information from a webpage"
          }
        },
        {
          "name": "Extract Favicon",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"url\": \"https://toolcenter.dev\",\n  \"format\": \"png\"\n}"
            },
            "url": {
              "raw": "{{base_url}}/favicon",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "favicon"
              ]
            },
            "description": "Extract favicon from a website in various formats"
          }
        },
        {
          "name": "Generate Link Preview",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"url\": \"https://toolcenter.dev\"\n}"
            },
            "url": {
              "raw": "{{base_url}}/link-preview",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "link-preview"
              ]
            },
            "description": "Generate link preview with title, description, and thumbnail"
          }
        },
        {
          "name": "Bulk Metadata",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"requests\": [\n    {\n      \"url\": \"https://toolcenter.dev\"\n    },\n    {\n      \"url\": \"https://example.com\"\n    }\n  ]\n}"
            },
            "url": {
              "raw": "{{base_url}}/bulk/metadata",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "bulk",
                "metadata"
              ]
            },
            "description": "Extract metadata from multiple URLs in a single request (max 20)"
          }
        }
      ]
    },
    {
      "name": "Analysis",
      "item": [
        {
          "name": "DNS Lookup",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"domain\": \"toolcenter.dev\",\n  \"type\": \"A\"\n}"
            },
            "url": {
              "raw": "{{base_url}}/dns",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "dns"
              ]
            },
            "description": "Perform DNS lookups for various record types"
          }
        },
        {
          "name": "SSL Certificate Check",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"domain\": \"toolcenter.dev\",\n  \"port\": 443\n}"
            },
            "url": {
              "raw": "{{base_url}}/ssl",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "ssl"
              ]
            },
            "description": "Check SSL certificate validity and details"
          }
        },
        {
          "name": "Website Status Check",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"url\": \"https://toolcenter.dev\",\n  \"follow_redirects\": true\n}"
            },
            "url": {
              "raw": "{{base_url}}/status",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "status"
              ]
            },
            "description": "Check if a website is online and get response details"
          }
        },
        {
          "name": "Detect Technology Stack",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"url\": \"https://toolcenter.dev\"\n}"
            },
            "url": {
              "raw": "{{base_url}}/techstack",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "techstack"
              ]
            },
            "description": "Analyze and detect technologies used by a website"
          }
        },
        {
          "name": "Domain WHOIS Lookup",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"domain\": \"toolcenter.dev\"\n}"
            },
            "url": {
              "raw": "{{base_url}}/whois",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "whois"
              ]
            },
            "description": "Get WHOIS information for a domain"
          }
        },
        {
          "name": "Extract Color Palette",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"url\": \"https://toolcenter.dev\",\n  \"count\": 5\n}"
            },
            "url": {
              "raw": "{{base_url}}/colors",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "colors"
              ]
            },
            "description": "Extract dominant colors from a webpage or image"
          }
        }
      ]
    },
    {
      "name": "Utilities",
      "item": [
        {
          "name": "Generate QR Code",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"text\": \"https://toolcenter.dev\",\n  \"size\": 300,\n  \"format\": \"png\",\n  \"color\": \"#000000\",\n  \"bgColor\": \"#ffffff\"\n}"
            },
            "url": {
              "raw": "{{base_url}}/qr",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "qr"
              ]
            },
            "description": "Generate QR codes in PNG or SVG format with customization options"
          }
        },
        {
          "name": "Generate OG Image",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"title\": \"ToolCenter API\",\n  \"subtitle\": \"All-in-one developer toolkit\",\n  \"bgColor\": \"#1e40af\",\n  \"textColor\": \"#ffffff\",\n  \"fontSize\": 64,\n  \"pattern\": \"grid\"\n}"
            },
            "url": {
              "raw": "{{base_url}}/og-image",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "og-image"
              ]
            },
            "description": "Generate Open Graph social media images with custom text and styling"
          }
        },
        {
          "name": "Add Watermark",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"image\": \"https://example.com/image.jpg\",\n  \"text\": \"\u00a9 ToolCenter 2024\",\n  \"position\": \"bottom-right\",\n  \"opacity\": 0.7\n}"
            },
            "url": {
              "raw": "{{base_url}}/watermark",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "watermark"
              ]
            },
            "description": "Add text or image watermarks to images"
          }
        },
        {
          "name": "Compress Image",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"image\": \"https://example.com/large-image.jpg\",\n  \"quality\": 85,\n  \"format\": \"webp\"\n}"
            },
            "url": {
              "raw": "{{base_url}}/compress",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "compress"
              ]
            },
            "description": "Compress and optimize images while maintaining quality"
          }
        },
        {
          "name": "Generate Placeholder Image",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"width\": 800,\n  \"height\": 600,\n  \"text\": \"800x600\",\n  \"bg_color\": \"#cccccc\",\n  \"text_color\": \"#333333\",\n  \"format\": \"png\"\n}"
            },
            "url": {
              "raw": "{{base_url}}/placeholder",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "placeholder"
              ]
            },
            "description": "Generate placeholder images with custom text and colors"
          }
        }
      ]
    },
    {
      "name": "Management",
      "item": [
        {
          "name": "Get API Usage",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/usage",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "usage"
              ]
            },
            "description": "Get current API usage statistics for your account"
          }
        },
        {
          "name": "Generate Signed URL",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"tool\": \"screenshot\",\n  \"params\": {\n    \"url\": \"https://example.com\",\n    \"width\": 1920,\n    \"height\": 1080\n  },\n  \"expires_in\": 86400\n}"
            },
            "url": {
              "raw": "{{base_url}}/signed-url",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "signed-url"
              ]
            },
            "description": "Generate a signed URL for authenticated access to API endpoints"
          }
        },
        {
          "name": "List Schedules",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/schedules",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "schedules"
              ]
            },
            "description": "Get all scheduled tasks for your account"
          }
        },
        {
          "name": "Create Schedule",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"tool\": \"screenshot\",\n  \"params\": {\n    \"url\": \"https://example.com\",\n    \"width\": 1920,\n    \"height\": 1080\n  },\n  \"interval\": \"daily\",\n  \"webhook_url\": \"https://yoursite.com/webhook\"\n}"
            },
            "url": {
              "raw": "{{base_url}}/schedules",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "schedules"
              ]
            },
            "description": "Create a new scheduled task"
          }
        },
        {
          "name": "Get Schedule",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{base_url}}/schedules/1",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "schedules",
                "1"
              ]
            },
            "description": "Get details of a specific schedule"
          }
        },
        {
          "name": "Update Schedule",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"is_active\": false,\n  \"interval\": \"weekly\",\n  \"params\": {\n    \"url\": \"https://updated-example.com\",\n    \"width\": 1280,\n    \"height\": 720\n  }\n}"
            },
            "url": {
              "raw": "{{base_url}}/schedules/1",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "schedules",
                "1"
              ]
            },
            "description": "Update an existing schedule"
          }
        },
        {
          "name": "Delete Schedule",
          "request": {
            "method": "DELETE",
            "header": [],
            "url": {
              "raw": "{{base_url}}/schedules/1",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "schedules",
                "1"
              ]
            },
            "description": "Delete a scheduled task"
          }
        }
      ]
    },
    {
      "name": "URL Shortener",
      "request": {
        "method": "POST",
        "url": "https://api.toolcenter.dev/v1/shorten",
        "header": [
          {
            "key": "Authorization",
            "value": "Bearer {{api_key}}"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\"url\": \"https://example.com\"}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "Markdown to HTML",
      "request": {
        "method": "POST",
        "url": "https://api.toolcenter.dev/v1/markdown",
        "header": [
          {
            "key": "Authorization",
            "value": "Bearer {{api_key}}"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\"markdown\": \"# Hello\"}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "Minify",
      "request": {
        "method": "POST",
        "url": "https://api.toolcenter.dev/v1/minify",
        "header": [
          {
            "key": "Authorization",
            "value": "Bearer {{api_key}}"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\"content\": \"<h1> hi </h1>\", \"type\": \"html\"}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "Base64",
      "request": {
        "method": "POST",
        "url": "https://api.toolcenter.dev/v1/base64",
        "header": [
          {
            "key": "Authorization",
            "value": "Bearer {{api_key}}"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\"action\": \"encode\", \"content\": \"hello\"}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "Hash Generator",
      "request": {
        "method": "POST",
        "url": "https://api.toolcenter.dev/v1/hash",
        "header": [
          {
            "key": "Authorization",
            "value": "Bearer {{api_key}}"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\"content\": \"test\", \"algorithms\": [\"md5\", \"sha256\"]}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "JSON Validator",
      "request": {
        "method": "POST",
        "url": "https://api.toolcenter.dev/v1/json",
        "header": [
          {
            "key": "Authorization",
            "value": "Bearer {{api_key}}"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\"content\": \"{\\\"a\\\":1}\", \"action\": \"validate\"}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "Cron Parser",
      "request": {
        "method": "POST",
        "url": "https://api.toolcenter.dev/v1/cron",
        "header": [
          {
            "key": "Authorization",
            "value": "Bearer {{api_key}}"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\"expression\": \"0 9 * * 1-5\"}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "Email Validation",
      "request": {
        "method": "POST",
        "url": "https://api.toolcenter.dev/v1/email-validate",
        "header": [
          {
            "key": "Authorization",
            "value": "Bearer {{api_key}}"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\"email\": \"test@gmail.com\"}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "IP Geolocation",
      "request": {
        "method": "GET",
        "url": "https://api.toolcenter.dev/v1/geoip?ip=8.8.8.8",
        "header": [
          {
            "key": "Authorization",
            "value": "Bearer {{api_key}}"
          }
        ]
      }
    },
    {
      "name": "User Agent Parser",
      "request": {
        "method": "GET",
        "url": "https://api.toolcenter.dev/v1/user-agent",
        "header": [
          {
            "key": "Authorization",
            "value": "Bearer {{api_key}}"
          }
        ]
      }
    },
    {
      "name": "Web Scraper",
      "request": {
        "method": "POST",
        "url": "https://api.toolcenter.dev/v1/scrape",
        "header": [
          {
            "key": "Authorization",
            "value": "Bearer {{api_key}}"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\"url\": \"https://example.com\"}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "Page Speed",
      "request": {
        "method": "POST",
        "url": "https://api.toolcenter.dev/v1/pagespeed",
        "header": [
          {
            "key": "Authorization",
            "value": "Bearer {{api_key}}"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\"url\": \"https://example.com\"}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "Responsive Preview",
      "request": {
        "method": "POST",
        "url": "https://api.toolcenter.dev/v1/responsive",
        "header": [
          {
            "key": "Authorization",
            "value": "Bearer {{api_key}}"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\"url\": \"https://example.com\"}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "Broken Link Checker",
      "request": {
        "method": "POST",
        "url": "https://api.toolcenter.dev/v1/broken-links",
        "header": [
          {
            "key": "Authorization",
            "value": "Bearer {{api_key}}"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\"url\": \"https://example.com\"}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "Accessibility Checker",
      "request": {
        "method": "POST",
        "url": "https://api.toolcenter.dev/v1/accessibility",
        "header": [
          {
            "key": "Authorization",
            "value": "Bearer {{api_key}}"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\"url\": \"https://example.com\"}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "SEO Analyzer",
      "request": {
        "method": "POST",
        "url": "https://api.toolcenter.dev/v1/seo",
        "header": [
          {
            "key": "Authorization",
            "value": "Bearer {{api_key}}"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\"url\": \"https://example.com\"}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "Barcode Generator",
      "request": {
        "method": "POST",
        "url": "https://api.toolcenter.dev/v1/barcode",
        "header": [
          {
            "key": "Authorization",
            "value": "Bearer {{api_key}}"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\"data\": \"HELLO-123\"}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "Image Resize",
      "request": {
        "method": "POST",
        "url": "https://api.toolcenter.dev/v1/image-resize",
        "header": [
          {
            "key": "Authorization",
            "value": "Bearer {{api_key}}"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\"url\": \"https://toolcenter.dev/logo.png\", \"width\": 200}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "Carbon Footprint",
      "request": {
        "method": "POST",
        "url": "https://api.toolcenter.dev/v1/carbon",
        "header": [
          {
            "key": "Authorization",
            "value": "Bearer {{api_key}}"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\"url\": \"https://example.com\"}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "Website Diff",
      "request": {
        "method": "POST",
        "url": "https://api.toolcenter.dev/v1/diff",
        "header": [
          {
            "key": "Authorization",
            "value": "Bearer {{api_key}}"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\"url1\": \"https://example.com\", \"url2\": \"https://example.org\"}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}