batch_geocode_locations
Geocode up to 10,000 U.S. addresses at once via CSV or an array and get matched coordinates, match indicators, and Tigerline IDs back in CSV.
Instructions
Batch geocode up to 10,000 addresses (locations only, no Census geographies). Provide addresses either as a raw CSV string or as a structured array. CSV format: UniqueID,Street,City,State,ZIP (all fields except UniqueID and Street are optional but must retain delimiter). Returns a CSV with: Record ID, Input Address, Match Indicator, Match Type, Output Address, Coordinates, Tigerline ID, Tigerline Side.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| addresses | No | Array of address objects to geocode. Ignored if csv_content is provided. | |
| benchmark | No | Benchmark name or ID (default: "Public_AR_Current") | |
| csv_content | No | Raw CSV content. Each row: UniqueID,Street,City,State,ZIP. For PR addresses with Urbanization: UniqueID,Street,Municipio,State,ZIP,Urbanization. Takes precedence over the addresses array if both are provided. |