{
  "info": {
    "name": "Webmotors — mcp.ai",
    "description": "REST API for the Webmotors 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/webmotors",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "webmotors_category",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/category",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "category"
          ]
        },
        "description": "Lista as categorias de veículo da Webmotors.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "webmotors_detail",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/detail",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "detail"
          ]
        },
        "description": "Detalhe completo de um anúncio. Informe o `slug` retornado por wm_search (o caminho após /comprar, ex.: '/honda/civic/2-0-.../4-portas/2023/71895570'). Retorna specs, preços, vendedor, fotos e descriç",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "webmotors_filters",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/filters",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "filters"
          ]
        },
        "description": "Lista as opções de filtro da busca (marcas, modelos e demais facetas) para montar consultas válidas.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "webmotors_location",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/location",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "location"
          ]
        },
        "description": "Resolve uma localização (cidade/estado/geo) a partir de um texto livre, para filtrar a busca por região.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "webmotors_market_price",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/market/price",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "market",
            "price"
          ]
        },
        "description": "Preço médio de mercado do modelo de um anúncio (id = UniqueId de wm_search). Retorna { Make, Model, Version, Year, FipeCode, FipePrice, BiggestPrice, MediumPrice, SmallestPrice }. Diferencial sobre a ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "webmotors_search",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search"
          ]
        },
        "description": "Busca anúncios de veículos na Webmotors. Filtre por marca e modelo; pagine e ordene. Retorna { total, results[] } com { id, title, make, model, version, year, km, price, fipePercent, slug, detailUrl, ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"brand\": \"\",\n  \"model\": \"\",\n  \"path\": \"\",\n  \"page\": 0,\n  \"perPage\": 0,\n  \"order\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}