Skip to content
GuidesPlaygroundDashboard

Batch geocode multiple addresses

$client->geocode->batch(list<string> addresses): GeocodeBatchResponse
POST/api/v1/geocode/batch

Batch geocode multiple addresses

ParametersExpand Collapse
addresses: list<string>
ReturnsExpand Collapse
mixed

Batch geocode multiple addresses

<?php

require_once dirname(__DIR__) . '/vendor/autoload.php';

$client = new Client(apiKey: 'My API Key', environment: 'local');

$response = $client->geocode->batch(addresses: ['string']);

var_dump($response);
{}
Returns Examples
{}