{
  "info": {
    "name": "Census Bureau — mcp.ai",
    "description": "REST API for the Census Bureau 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/census_bureau",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "census_bureau_geocode_address",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/geocode/address",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "geocode",
            "address"
          ]
        },
        "description": "Tool to geocode a single address to get latitude/longitude coordinates. Use when you need to convert a street address into geographic coordinates.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"address\": \"\",\n  \"benchmark\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_geocode_address_geographies",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/geocode/address/geographies",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "geocode",
            "address",
            "geographies"
          ]
        },
        "description": "Geocode an address and return Census geography identifiers including state, county, tract, block group, and block FIPS codes. This tool converts a physical address into geographic coordinates and retu",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"format\": \"\",\n  \"address\": \"\",\n  \"vintage\": \"\",\n  \"benchmark\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_geocode_address_parts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/geocode/address/parts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "geocode",
            "address",
            "parts"
          ]
        },
        "description": "Tool to geocode an address using separate components (street, city, state, ZIP) to get latitude/longitude coordinates. Use when you have address data in separate fields rather than a single line.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"zip\": \"\",\n  \"city\": \"\",\n  \"state\": \"\",\n  \"street\": \"\",\n  \"benchmark\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_geocode_address_with_geography",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/geocode/address/with/geography",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "geocode",
            "address",
            "with",
            "geography"
          ]
        },
        "description": "Tool to geocode an address and return both coordinates and Census geography information. Use when you need geographic coordinates plus Census geographic identifiers like state FIPS, county FIPS, censu",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"city\": \"\",\n  \"state\": \"\",\n  \"layers\": \"\",\n  \"street\": \"\",\n  \"vintage\": \"\",\n  \"benchmark\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_geocode_coordinates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/geocode/coordinates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "geocode",
            "coordinates"
          ]
        },
        "description": "Reverse geocode latitude/longitude coordinates to Census geographic areas. Takes decimal degree coordinates and returns associated Census geographies including states, counties, tracts, blocks, congre",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"x\": 0,\n  \"y\": 0,\n  \"format\": \"\",\n  \"layers\": \"\",\n  \"vintage\": \"\",\n  \"benchmark\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_geocode_geographies_address_pr",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/geocode/geographies/address/pr",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "geocode",
            "geographies",
            "address",
            "pr"
          ]
        },
        "description": "Tool to geocode a Puerto Rico address and return coordinates plus Census geography data. Use for Puerto Rico addresses when you need geographic coordinates and Census identifiers like state, county, t",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"urb\": \"\",\n  \"zip\": \"\",\n  \"city\": \"\",\n  \"state\": \"\",\n  \"layers\": \"\",\n  \"street\": \"\",\n  \"vintage\": \"\",\n  \"benchmark\": \"\",\n  \"municipio\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_geocode_geographies_batch",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/geocode/geographies/batch",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "geocode",
            "geographies",
            "batch"
          ]
        },
        "description": "Batch geocode multiple addresses from a CSV file and return Census geography codes. Tool to geocode up to 10,000 addresses at once from a CSV file. Use when you need to convert addresses to geographic",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"vintage\": \"\",\n  \"benchmark\": \"\",\n  \"address_file\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_geocode_location_address_pr",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/geocode/location/address/pr",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "geocode",
            "location",
            "address",
            "pr"
          ]
        },
        "description": "Tool to geocode a Puerto Rico address with urbanization to latitude/longitude coordinates. Use when geocoding addresses in Puerto Rico that include urbanization or municipio components.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"urb\": \"\",\n  \"zip\": \"\",\n  \"city\": \"\",\n  \"state\": \"\",\n  \"street\": \"\",\n  \"benchmark\": \"\",\n  \"municipio\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_get_acs1_year_estimates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/acs1/year/estimates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "acs1",
            "year",
            "estimates"
          ]
        },
        "description": "Tool to retrieve 1-year American Community Survey (ACS) estimates for a specified geography. Use when you need the most recent annual ACS data for a given area.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"in\": \"\",\n  \"for\": \"\",\n  \"get\": \"\",\n  \"year\": 0,\n  \"table_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_get_acs5_year_estimates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/acs5/year/estimates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "acs5",
            "year",
            "estimates"
          ]
        },
        "description": "Retrieve 5-year American Community Survey (ACS) estimates from the U.S. Census Bureau. The ACS 5-year estimates provide reliable data for all geographic areas by combining 5 years of survey data. Use ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\",\n  \"year\": 0,\n  \"geo_in\": \"\",\n  \"geo_for\": \"\",\n  \"variables\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_get_community_resilience_estimates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/community/resilience/estimates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "community",
            "resilience",
            "estimates"
          ]
        },
        "description": "Retrieve U.S. Census Bureau Community Resilience Estimates (CRE) data. The CRE measures social vulnerability to disasters by estimating the number of individuals with risk factors (e.g., income, disab",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"for\": \"\",\n  \"get\": \"\",\n  \"key\": \"\",\n  \"year\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_get_county_business_patterns",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/county/business/patterns",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "county",
            "business",
            "patterns"
          ]
        },
        "description": "Tool to retrieve County Business Patterns (CBP) data for a specified year. Use when you need county-level business establishment and employment statistics filtered by industry and geography.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"in\": \"\",\n  \"for\": \"\",\n  \"get\": \"\",\n  \"key\": \"\",\n  \"year\": 0,\n  \"NAICS2017\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_get_dataset_examples_html",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/dataset/examples/html",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "dataset",
            "examples",
            "html"
          ]
        },
        "description": "Tool to retrieve example queries for a Census dataset in HTML format. Use when you need to see example API queries for different geographic levels and hierarchies within a specific dataset. The respon",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\",\n  \"dataset\": \"\",\n  \"vintage\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_get_dataset_examples_json",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/dataset/examples/json",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "dataset",
            "examples",
            "json"
          ]
        },
        "description": "Tool to retrieve example API query patterns for a specific Census dataset and vintage. Use when you need to understand available geography levels, example variable names, and how to structure queries ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\",\n  \"dataset\": \"\",\n  \"vintage\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_get_dataset_examples_xml",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/dataset/examples/xml",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "dataset",
            "examples",
            "xml"
          ]
        },
        "description": "Tool to retrieve example queries for a Census Bureau dataset in XML format. Use when you need to understand how to query a specific dataset or see sample API calls.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dataset\": \"\",\n  \"vintage\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_get_dataset_geography_html",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/dataset/geography/html",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "dataset",
            "geography",
            "html"
          ]
        },
        "description": "Tool to retrieve available geographies for a Census dataset in HTML format. Use when you need to see which geographic levels (state, county, tract, etc.) and hierarchies are available for a specific C",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dataset\": \"\",\n  \"vintage\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_get_dataset_geography_json",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/dataset/geography/json",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "dataset",
            "geography",
            "json"
          ]
        },
        "description": "Tool to get the list of supported geography levels for a specific Census dataset with their hierarchy and required predicates. Use when you need to discover which geographic areas are available for qu",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\",\n  \"dataset\": \"\",\n  \"vintage\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_get_dataset_geography_xml",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/dataset/geography/xml",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "dataset",
            "geography",
            "xml"
          ]
        },
        "description": "Tool to retrieve available geographies for a Census Bureau dataset in XML format. Use when you need to discover which geographic levels (state, county, tract, etc.) are supported for a specific datase",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dataset\": \"\",\n  \"vintage\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_get_dataset_groups",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/dataset/groups",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "dataset",
            "groups"
          ]
        },
        "description": "Tool to retrieve the list of table groups for a Census dataset and vintage. Use when you need to discover available data tables or before querying all variables in a table using group() syntax.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dataset\": \"\",\n  \"vintage\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_get_dataset_sorts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/dataset/sorts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "dataset",
            "sorts"
          ]
        },
        "description": "Tool to list available sort options for a specific Census dataset and vintage. Use when you need to determine which fields can be used to sort query results.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\",\n  \"dataset\": \"\",\n  \"vintage\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_get_dataset_tags",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/dataset/tags",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "dataset",
            "tags"
          ]
        },
        "description": "Tool to list available tags/keywords for a specific Census dataset and vintage. Use when you need to discover topic categories, demographic dimensions, or searchable keywords available in a dataset.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dataset\": \"\",\n  \"vintage\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_get_dataset_variables_json",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/dataset/variables/json",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "dataset",
            "variables",
            "json"
          ]
        },
        "description": "Tool to retrieve the complete list of available variables for a specific Census dataset. Use when you need to discover what variables are available in a dataset, their names, labels, data types, and v",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dataset\": \"\",\n  \"vintage\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_get_decennial_census_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/decennial/census/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "decennial",
            "census",
            "data"
          ]
        },
        "description": "Retrieve Decennial Census data (population, demographics, housing) from the U.S. Census Bureau API. Use this tool to get census statistics for states, counties, tracts, and other geographic units. The",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"get\": \"\",\n  \"key\": \"\",\n  \"dataset\": \"\",\n  \"vintage\": \"\",\n  \"geography\": \"\",\n  \"in_geography\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_get_planning_database_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/planning/database/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "planning",
            "database",
            "data"
          ]
        },
        "description": "Get Planning Database (PDB) data containing Census tract and block group level data useful for planning. Use this tool to retrieve demographic and operational data from the Planning Database including",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"in\": \"\",\n  \"for\": \"\",\n  \"get\": \"\",\n  \"vintage\": 0,\n  \"geography\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_get_population_estimates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/population/estimates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "population",
            "estimates"
          ]
        },
        "description": "Retrieves Population Estimates Program (PEP) data from the US Census Bureau API. Use this tool when you need: - Total population estimates for states, counties, or the nation - Components of populatio",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"for\": \"\",\n  \"get\": \"\",\n  \"key\": \"\",\n  \"dataset\": \"\",\n  \"vintage\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_get_tigerweb_acs_generalized",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/tigerweb/acs/generalized",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "tigerweb",
            "acs",
            "generalized"
          ]
        },
        "description": "Tool to access generalized ACS (American Community Survey) boundary services from TIGERweb for specific survey years (2012-2024). Use when you need to retrieve geographic boundary information and meta",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"f\": \"\",\n  \"year\": \"\",\n  \"service\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_get_tigerweb_map_service",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/tigerweb/map/service",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "tigerweb",
            "map",
            "service"
          ]
        },
        "description": "Tool to retrieve TIGERweb MapServer service metadata including available layers, capabilities, and spatial reference information. Use when you need to discover available geographic layers before query",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"f\": \"\",\n  \"service\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_get_timeseries_examples_html",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/timeseries/examples/html",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "timeseries",
            "examples",
            "html"
          ]
        },
        "description": "Tool to retrieve HTML-formatted example queries for a Census Bureau timeseries dataset. Use when you need to discover valid API query patterns and parameters for a specific timeseries dataset.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dataset\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_get_timeseries_examples_json",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/timeseries/examples/json",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "timeseries",
            "examples",
            "json"
          ]
        },
        "description": "Tool to get example queries for a timeseries dataset in JSON format. Use when you need to discover example query patterns and available parameters for a specific Census Bureau timeseries dataset.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\",\n  \"dataset\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_get_timeseries_examples_xml",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/timeseries/examples/xml",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "timeseries",
            "examples",
            "xml"
          ]
        },
        "description": "Tool to retrieve example queries for a Census Bureau timeseries dataset in XML format. Use when you need to understand available variables, predicates, and geography options for a specific timeseries ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\",\n  \"dataset\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_get_timeseries_geography_html",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/timeseries/geography/html",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "timeseries",
            "geography",
            "html"
          ]
        },
        "description": "Tool to retrieve available FIPS geographies for a timeseries dataset in HTML format. Use when you need to understand which geography levels, hierarchies, and FIPS codes are available for querying a sp",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\",\n  \"dataset\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_get_timeseries_geography_json",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/timeseries/geography/json",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "timeseries",
            "geography",
            "json"
          ]
        },
        "description": "Tool to get available geographies for a timeseries dataset in JSON format. Returns FIPS geography levels, display codes, and reference dates for the specified dataset. Use this when you need to determ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dataset\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_get_timeseries_geography_xml",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/timeseries/geography/xml",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "timeseries",
            "geography",
            "xml"
          ]
        },
        "description": "Tool to retrieve available geographies for a Census Bureau timeseries dataset in XML format. Use when you need to discover which geographic levels are supported for a specific timeseries dataset and u",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\",\n  \"dataset\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_get_timeseries_variables_html",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/timeseries/variables/html",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "timeseries",
            "variables",
            "html"
          ]
        },
        "description": "Tool to retrieve a list of available variables for a Census timeseries dataset in HTML format. Use when you need to discover what data fields are available for a specific timeseries dataset.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\",\n  \"dataset\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_get_timeseries_variables_json",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/timeseries/variables/json",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "timeseries",
            "variables",
            "json"
          ]
        },
        "description": "Tool to get a list of variables available for a timeseries dataset in JSON format. Use when you need to discover which variables are available for querying in a specific Census Bureau timeseries datas",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\",\n  \"dataset\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_get_timeseries_variables_xml",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/timeseries/variables/xml",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "timeseries",
            "variables",
            "xml"
          ]
        },
        "description": "Tool to get a list of variables available for a timeseries dataset in XML format. Use when you need the variable definitions, data types, and valid values for a specific timeseries dataset.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dataset\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_get_variable_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/variable/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "variable",
            "details"
          ]
        },
        "description": "Tool to retrieve metadata for a specific variable in a Census dataset for a given year. Use when you need the label, concept, data type, attribute codes, and valid-value constraints.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\",\n  \"year\": 0,\n  \"dataset\": \"\",\n  \"variable\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_list_available_datasets",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/available/datasets",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "available",
            "datasets"
          ]
        },
        "description": "Lists all available Census Bureau datasets with their metadata, vintages, and API endpoints. Use this as the discovery tool to find available datasets before querying specific data.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_list_datasets_html",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/datasets/html",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "datasets",
            "html"
          ]
        },
        "description": "Tool to retrieve a complete HTML listing of all available (non-timeseries) Census Bureau datasets. Use when you need to discover available datasets with links to their Geographies, Variables, Examples",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_list_datasets_xml",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/datasets/xml",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "datasets",
            "xml"
          ]
        },
        "description": "Tool to retrieve a list of all available Census Bureau datasets in XML format. Use when you need to discover available datasets, their paths, descriptions, and time periods. The XML contains comprehen",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_list_geocoder_benchmarks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/geocoder/benchmarks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "geocoder",
            "benchmarks"
          ]
        },
        "description": "List all available benchmark versions for the Census Bureau geocoding service. Use this to discover valid benchmark options before geocoding addresses.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_list_geocoder_vintages",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/geocoder/vintages",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "geocoder",
            "vintages"
          ]
        },
        "description": "Tool to list available geography vintages for a given Census geocoder benchmark. Use when you need to see what geography versions are available for geocoding operations.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"benchmark\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_list_tigerweb_services",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/tigerweb/services",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "tigerweb",
            "services"
          ]
        },
        "description": "Tool to discover all available TIGERweb map services for Census geographic boundaries. Use when you need to find which TIGERweb services are available (Current, ACS years, Census years) before accessi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"f\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_list_timeseries_datasets_html",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/timeseries/datasets/html",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "timeseries",
            "datasets",
            "html"
          ]
        },
        "description": "Tool to retrieve a list of all available timeseries datasets from the US Census Bureau API in HTML format. Use when you need to discover available timeseries datasets and their endpoints.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_list_timeseries_datasets_json",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/timeseries/datasets/json",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "timeseries",
            "datasets",
            "json"
          ]
        },
        "description": "Tool to list all available timeseries datasets from the US Census Bureau API. Use when you need to discover what timeseries data is available. This endpoint returns a DCAT Catalog containing metadata ",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_list_timeseries_datasets_xml",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/timeseries/datasets/xml",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "timeseries",
            "datasets",
            "xml"
          ]
        },
        "description": "Tool to retrieve a list of all available Census Bureau timeseries datasets in XML format. Use when you need to discover available timeseries datasets, their endpoints, or metadata. This is a discovery",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_query_acs_acsse",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/acs/acsse",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "acs",
            "acsse"
          ]
        },
        "description": "Query ACS Supplemental Estimates data by variables and geography. Use when you need supplemental ACS estimates for specific geographic areas and variables.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"in\": \"\",\n  \"for\": \"\",\n  \"get\": \"\",\n  \"vintage\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_query_acs_cprofile",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/acs/cprofile",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "acs",
            "cprofile"
          ]
        },
        "description": "Query ACS Comparison Profiles data by variables and geography. Use when you need to compare demographic, social, economic, or housing characteristics across different time periods within the same data",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"in\": \"\",\n  \"for\": \"\",\n  \"get\": \"\",\n  \"product\": \"\",\n  \"vintage\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_query_acs_flows",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/acs/flows",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "acs",
            "flows"
          ]
        },
        "description": "Tool to query American Community Survey (ACS) Migration Flows data by variables and geography. Use when you need migration flow statistics between geographic areas (inbound/outbound migration patterns",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"in\": \"\",\n  \"for\": \"\",\n  \"get\": \"\",\n  \"vintage\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_query_acs_profile",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/acs/profile",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "acs",
            "profile"
          ]
        },
        "description": "Tool to query ACS Data Profiles by variables and geography. Use when you need demographic, social, economic, or housing profile data from the American Community Survey for specific geographic areas.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"in\": \"\",\n  \"for\": \"\",\n  \"get\": \"\",\n  \"product\": \"\",\n  \"vintage\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_query_acs_spp",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/acs/spp",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "acs",
            "spp"
          ]
        },
        "description": "Tool to query ACS Selected Population Profiles (SPP) data by variables and geography for specific population groups. Use when you need demographic data filtered by race, ethnicity, ancestry, or other ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"in\": \"\",\n  \"for\": \"\",\n  \"get\": \"\",\n  \"product\": \"\",\n  \"vintage\": 0,\n  \"POPGROUP\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_query_acs_subject",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/acs/subject",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "acs",
            "subject"
          ]
        },
        "description": "Tool to query ACS Subject Tables data by variables and geography. Use when you need subject table data (S-tables like S0101 for Age and Sex, S1701 for Poverty Status) from the American Community Surve",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"in\": \"\",\n  \"for\": \"\",\n  \"get\": \"\",\n  \"product\": \"\",\n  \"vintage\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_query_annual_business_survey",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/annual/business/survey",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "annual",
            "business",
            "survey"
          ]
        },
        "description": "Tool to query Annual Business Survey Company Summary (abscs) data with demographic filters. Use when you need business ownership demographics, employment, payroll, or industry statistics filtered by s",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"in\": \"\",\n  \"SEX\": \"\",\n  \"for\": \"\",\n  \"get\": \"\",\n  \"EMPSZFI\": \"\",\n  \"vintage\": \"\",\n  \"ETH_GROUP\": \"\",\n  \"NAICS2022\": \"\",\n  \"VET_GROUP\": \"\",\n  \"RACE_GROUP\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_query_commodity_flow_survey",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/commodity/flow/survey",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "commodity",
            "flow",
            "survey"
          ]
        },
        "description": "Query Commodity Flow Survey data on freight shipments by origin, destination, mode, and commodity. Use when you need freight transportation statistics including shipment values, tonnage, and ton-miles",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"in\": \"\",\n  \"for\": \"\",\n  \"get\": \"\",\n  \"vintage\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_query_cps_survey",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/cps/survey",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "cps",
            "survey"
          ]
        },
        "description": "Tool to query Current Population Survey (CPS) microdata including basic monthly employment data and supplemental surveys. Use when you need individual-level labor force, employment, earnings, or demog",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"for\": \"\",\n  \"get\": \"\",\n  \"month\": \"\",\n  \"survey\": \"\",\n  \"vintage\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_query_dec_dhc",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/dec/dhc",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "dec",
            "dhc"
          ]
        },
        "description": "Tool to query Decennial Census Demographic and Housing Characteristics (DHC) data by variables and geography. Use when you need detailed 2020 Census demographic and housing data for states, counties, ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"in\": \"\",\n  \"for\": \"\",\n  \"get\": \"\",\n  \"vintage\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_query_dec_dp",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/dec/dp",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "dec",
            "dp"
          ]
        },
        "description": "Tool to query Decennial Census Demographic Profile data by variables and geography. Use when you need comprehensive demographic and housing profile data from the 2020 Decennial Census for specific geo",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"in\": \"\",\n  \"for\": \"\",\n  \"get\": \"\",\n  \"vintage\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_query_dec_pl",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/dec/pl",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "dec",
            "pl"
          ]
        },
        "description": "Tool to query Decennial Census P.L. 94-171 Redistricting Data. Use when you need official population counts used for congressional and state legislative redistricting for census years 2000, 2010, or 2",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"in\": \"\",\n  \"for\": \"\",\n  \"get\": \"\",\n  \"vintage\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_query_economic_census",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/economic/census",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "economic",
            "census"
          ]
        },
        "description": "Tool to query Economic Census data including establishments, employment, payroll, and receipts by geography and industry (NAICS). Use when you need comprehensive business statistics from the 5-year Ec",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"in\": \"\",\n  \"for\": \"\",\n  \"get\": \"\",\n  \"key\": \"\",\n  \"product\": \"\",\n  \"vintage\": \"\",\n  \"NAICS2012\": \"\",\n  \"NAICS2017\": \"\",\n  \"NAICS2022\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_query_intl_trade_timeseries",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/intl/trade/timeseries",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "intl",
            "trade",
            "timeseries"
          ]
        },
        "description": "Tool to query International Trade timeseries data from Census Bureau API. Provides monthly and annual import/export statistics by commodity, country, and port. Use when you need US trade statistics or",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"get\": \"\",\n  \"YEAR\": \"\",\n  \"time\": \"\",\n  \"MONTH\": \"\",\n  \"subtype\": \"\",\n  \"CTY_CODE\": \"\",\n  \"DISTRICT\": \"\",\n  \"E_ENDUSE\": \"\",\n  \"I_ENDUSE\": \"\",\n  \"trade_type\": \"\",\n  \"E_COMMODITY\": \"\",\n  \"I_COMMODITY\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_query_nonemployer_statistics",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/nonemployer/statistics",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "nonemployer",
            "statistics"
          ]
        },
        "description": "Tool to query Nonemployer Statistics data covering businesses with no paid employees. Use when you need statistics on self-employed individuals, sole proprietorships, and businesses without payroll fi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"in\": \"\",\n  \"for\": \"\",\n  \"get\": \"\",\n  \"key\": \"\",\n  \"vintage\": \"\",\n  \"NAICS2017\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_query_pep_char_age_groups",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/pep/char/age/groups",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "pep",
            "char",
            "age",
            "groups"
          ]
        },
        "description": "Query population estimates by age groups, sex, race, and Hispanic origin from the Census Bureau PEP CharAgeGroups dataset. Use this tool when you need population estimates broken down by demographic c",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"in\": \"\",\n  \"for\": \"\",\n  \"get\": \"\",\n  \"key\": \"\",\n  \"vintage\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_query_pep_components",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/pep/components",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "pep",
            "components"
          ]
        },
        "description": "Query components of population change from the Census Bureau Population Estimates Program (PEP). This tool retrieves data on births, deaths, natural increase, and migration components (domestic, inter",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"for\": \"\",\n  \"get\": \"\",\n  \"key\": \"\",\n  \"vintage\": 0,\n  \"PERIOD_CODE\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_query_pep_housing",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/pep/housing",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "pep",
            "housing"
          ]
        },
        "description": "Query housing unit estimates from the US Census Bureau Population Estimates Program (PEP). Use this tool to retrieve housing unit estimates for different geographic levels (national, state, county) fo",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"in\": \"\",\n  \"for\": \"\",\n  \"get\": \"\",\n  \"key\": \"\",\n  \"vintage\": 0,\n  \"DATE_CODE\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_query_population_projections",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/population/projections",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "population",
            "projections"
          ]
        },
        "description": "Query population projections from the Census Bureau API. Use this tool to retrieve projected population data for specific years (vintages 2012-2017) at various demographic breakdowns including age, se",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"AGE\": 0,\n  \"SEX\": 0,\n  \"for\": \"\",\n  \"get\": \"\",\n  \"HISP\": 0,\n  \"RACE\": 0,\n  \"YEAR\": 0,\n  \"vintage\": \"\",\n  \"SCENARIO\": \"\",\n  \"DATE_CODE\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_query_surname",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/surname",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "surname"
          ]
        },
        "description": "Query surname frequency data from the U.S. Census Bureau Decennial Census (2000 or 2010). Use this tool to retrieve surname statistics including frequency counts, national rankings, and race/ethnicity",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"get\": \"\",\n  \"key\": \"\",\n  \"NAME\": \"\",\n  \"RANK\": \"\",\n  \"vintage\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_query_tigerweb_layer",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/tigerweb/layer",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "tigerweb",
            "layer"
          ]
        },
        "description": "Tool to query TIGERweb GeoServices for Census geographic boundaries and features. Use when you need to retrieve geographic shapes, FIPS codes, or spatial data for states, counties, tracts, blocks, or ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"f\": \"\",\n  \"where\": \"\",\n  \"service\": \"\",\n  \"geometry\": \"\",\n  \"layer_id\": 0,\n  \"out_fields\": \"\",\n  \"geometry_type\": \"\",\n  \"result_offset\": 0,\n  \"return_geometry\": false,\n  \"result_record_count\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_query_timeseries_bds",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/timeseries/bds",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "timeseries",
            "bds"
          ]
        },
        "description": "Query Business Dynamics Statistics (BDS) time series data from the Census Bureau. Use when you need data on business formation, job creation, establishment dynamics, and employment statistics by indus",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"in\": \"\",\n  \"for\": \"\",\n  \"get\": \"\",\n  \"time\": \"\",\n  \"NAICS\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_query_timeseries_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/timeseries/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "timeseries",
            "data"
          ]
        },
        "description": "Query Census timeseries datasets containing longitudinal data for multiple time periods. Use this tool to retrieve economic indicators (EITS), international trade data, Quarterly Workforce Indicators ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"in\": \"\",\n  \"for\": \"\",\n  \"get\": \"\",\n  \"key\": \"\",\n  \"time\": \"\",\n  \"dataset\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_query_timeseries_eits",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/timeseries/eits",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "timeseries",
            "eits"
          ]
        },
        "description": "Tool to query Economic Indicators Time Series (EITS) data from the US Census Bureau. Use when you need retail sales, manufacturing, housing, trade, or other economic indicator time series data. The AP",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"in\": \"\",\n  \"for\": \"\",\n  \"get\": \"\",\n  \"time\": \"\",\n  \"indicator\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_query_timeseries_eits_resconst",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/timeseries/eits/resconst",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "timeseries",
            "eits",
            "resconst"
          ]
        },
        "description": "Tool to query Residential Construction statistics from Census Bureau Economic Indicators Time Series (EITS). Use when you need housing starts, permits, completions, or under-construction data. Returns",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"in\": \"\",\n  \"for\": \"\",\n  \"get\": \"\",\n  \"key\": \"\",\n  \"time\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_query_timeseries_eits_ressales",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/timeseries/eits/ressales",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "timeseries",
            "eits",
            "ressales"
          ]
        },
        "description": "Query Residential Sales statistics from Census Bureau's Economic Indicator Time Series (EITS). Use this tool to retrieve residential real estate sales data including prices, volumes, and inventory met",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"for\": \"\",\n  \"get\": \"\",\n  \"key\": \"\",\n  \"time\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_query_timeseries_healthins_sahie",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/timeseries/healthins/sahie",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "timeseries",
            "healthins",
            "sahie"
          ]
        },
        "description": "Query Small Area Health Insurance Estimates (SAHIE) from the Census Bureau timeseries API. Use this tool to retrieve annual health insurance coverage estimates for U.S. counties and states. SAHIE prov",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"in\": \"\",\n  \"for\": \"\",\n  \"get\": \"\",\n  \"key\": \"\",\n  \"time\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_query_timeseries_hps",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/timeseries/hps",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "timeseries",
            "hps"
          ]
        },
        "description": "Tool to query Household Pulse Survey (HPS) timeseries data measuring household experiences during the COVID-19 pandemic. Use when you need household-level statistics on topics like employment, housing",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"for\": \"\",\n  \"get\": \"\",\n  \"WEEK\": \"\",\n  \"time\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_query_timeseries_idb",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/timeseries/idb",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "timeseries",
            "idb"
          ]
        },
        "description": "Query International Database (IDB) demographic data for 227 countries and areas worldwide. Use this tool to retrieve demographic indicators including population, fertility rates, mortality rates, life",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"for\": \"\",\n  \"get\": \"\",\n  \"key\": \"\",\n  \"time\": \"\",\n  \"product\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_query_timeseries_intltrade_exports_hs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/timeseries/intltrade/exports/hs",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "timeseries",
            "intltrade",
            "exports",
            "hs"
          ]
        },
        "description": "Tool to query international trade exports by Harmonized System code from Census Bureau time series API. Use when you need export statistics filtered by time period, country, commodity, or customs dist",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"get\": \"\",\n  \"time\": \"\",\n  \"CTY_CODE\": \"\",\n  \"DISTRICT\": \"\",\n  \"E_COMMODITY\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_query_timeseries_intltrade_imports_enduse",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/timeseries/intltrade/imports/enduse",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "timeseries",
            "intltrade",
            "imports",
            "enduse"
          ]
        },
        "description": "Query international trade imports by end-use category from Census Bureau timeseries data. Use when you need monthly US import statistics categorized by product end-use (e.g., foods, industrial supplie",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"get\": \"\",\n  \"key\": \"\",\n  \"time\": \"\",\n  \"CTY_CODE\": \"\",\n  \"I_ENDUSE\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_query_timeseries_poverty",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/timeseries/poverty",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "timeseries",
            "poverty"
          ]
        },
        "description": "Query poverty statistics from the Census Bureau's timeseries poverty datasets. Use this tool to retrieve Small Area Income and Poverty Estimates (SAIPE) and historical poverty data for states, countie",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"in\": \"\",\n  \"for\": \"\",\n  \"get\": \"\",\n  \"time\": \"\",\n  \"product\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_query_timeseries_qwi",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/timeseries/qwi",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "timeseries",
            "qwi"
          ]
        },
        "description": "Query Quarterly Workforce Indicators (QWI) timeseries data on employment, earnings, and job flows. Use when you need detailed labor market statistics segmented by worker demographics (age, sex, educat",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"in\": \"\",\n  \"for\": \"\",\n  \"get\": \"\",\n  \"sex\": \"\",\n  \"race\": \"\",\n  \"time\": \"\",\n  \"year\": \"\",\n  \"agegrp\": \"\",\n  \"firmage\": \"\",\n  \"product\": \"\",\n  \"quarter\": \"\",\n  \"firmsize\": \"\",\n  \"industry\": \"\",\n  \"education\": \"\",\n  \"ethnicity\": \"\",\n  \"ownercode\": \"\",\n  \"seasonadj\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_query_timeseries_qwi_sa",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/timeseries/qwi/sa",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "timeseries",
            "qwi",
            "sa"
          ]
        },
        "description": "Query Quarterly Workforce Indicators (QWI) State/Area characteristics from the Census Bureau's time series API. Use when you need employment, payroll, job creation/destruction, or workforce turnover s",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"in\": \"\",\n  \"for\": \"\",\n  \"get\": \"\",\n  \"time\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "census_bureau_query_zip_business_patterns",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/zip/business/patterns",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "zip",
            "business",
            "patterns"
          ]
        },
        "description": "Tool to query ZIP Code Business Patterns (ZBP) data including establishments and employment by ZIP code and industry. Use when you need business statistics at the ZIP code level, filtered by NAICS ind",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"for\": \"\",\n  \"get\": \"\",\n  \"key\": \"\",\n  \"vintage\": 0,\n  \"NAICS2017\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}