{
  "info": {
    "name": "Placekey — mcp.ai",
    "description": "REST API for the Placekey 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/placekey",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "placekey_get_geocode_from_address",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/geocode/from/address",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "geocode",
            "from",
            "address"
          ]
        },
        "description": "This tool retrieves geocode information (latitude and longitude) for a given address using the Placekey API. It accepts address components (street_address, city, region, postal_code, iso_country_code)",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"city\": \"\",\n  \"region\": \"\",\n  \"postal_code\": \"\",\n  \"street_address\": \"\",\n  \"iso_country_code\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "placekey_get_placekey",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/placekey",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "placekey"
          ]
        },
        "description": "Tool to get a Placekey for a single location using address, coordinates, or POI details. Use when you need to obtain a unique identifier for a physical place with support for address fields, coordinat",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"city\": \"\",\n  \"region\": \"\",\n  \"options\": {},\n  \"latitude\": 0,\n  \"query_id\": \"\",\n  \"longitude\": 0,\n  \"postal_code\": \"\",\n  \"location_name\": \"\",\n  \"place_metadata\": {},\n  \"street_address\": \"\",\n  \"iso_country_code\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "placekey_get_placekey_from_address",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/placekey/from/address",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "placekey",
            "from",
            "address"
          ]
        },
        "description": "Convert a physical address into a unique Placekey identifier. The Placekey is a universal standard identifier for any physical place that helps in location matching, enrichment, and deduplication.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"city\": \"\",\n  \"region\": \"\",\n  \"postal_code\": \"\",\n  \"location_name\": \"\",\n  \"street_address\": \"\",\n  \"iso_country_code\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "placekey_get_placekeys_bulk",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/placekeys/bulk",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "placekeys",
            "bulk"
          ]
        },
        "description": "Get Placekeys for multiple locations in bulk (up to 100 queries per request). All queries must have the same iso_country_code. Supports address, coordinates, and POI queries with optional query_id for",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"options\": {},\n  \"queries\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}