{
  "info": {
    "name": "Reclame Aqui — mcp.ai",
    "description": "REST API for the Reclame Aqui 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/reclameaqui",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "reclameaqui_listar_reclamacoes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/listar/reclamacoes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "listar",
            "reclamacoes"
          ]
        },
        "description": "Lista as reclamações da sua empresa no Reclame Aqui (mais recentes primeiro). Traz id, título, status, consumidor, cidade/UF, se já foi respondida e avaliação.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"status\": \"\",\n  \"limit\": 0,\n  \"index\": 0,\n  \"order\": \"\",\n  \"order_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "reclameaqui_reclamacao",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/reclamacao",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "reclamacao"
          ]
        },
        "description": "Detalhe de uma ou mais reclamações por id (conversa completa em treatments, avaliação, score, status). Aceita lista de ids.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ids\": \"\",\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "reclameaqui_reputacao",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/reputacao",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "reputacao"
          ]
        },
        "description": "Indicadores de reputação da sua empresa no Reclame Aqui (nota/rating e principais problemas reclamados).",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "reclameaqui_responder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/responder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "responder"
          ]
        },
        "description": "Responde uma reclamação da sua empresa no Reclame Aqui. Por padrão é resposta PÚBLICA; use privada=true para mensagem interna ao consumidor. AÇÃO PÚBLICA — confirme o texto antes de enviar.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"mensagem\": \"\",\n  \"privada\": false,\n  \"ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}