## Batch geocode multiple addresses `client.Geocode.Batch(ctx, body) (*GeocodeBatchResponse, error)` **post** `/api/v1/geocode/batch` Batch geocode multiple addresses ### Parameters - `body GeocodeBatchParams` - `Addresses param.Field[[]string]` ### Returns - `type GeocodeBatchResponse interface{…}` ### Example ```go package main import ( "context" "fmt" "github.com/plazafyi/plaza-go" "github.com/plazafyi/plaza-go/option" ) func main() { client := githubcomplazafyiplazago.NewClient( option.WithAPIKey("My API Key"), ) response, err := client.Geocode.Batch(context.TODO(), githubcomplazafyiplazago.GeocodeBatchParams{ Addresses: githubcomplazafyiplazago.F([]string{"string"}), }) if err != nil { panic(err.Error()) } fmt.Printf("%+v\n", response) } ``` #### Response ```json {} ```