{"id":3137,"date":"2023-12-22T17:22:49","date_gmt":"2023-12-22T17:22:49","guid":{"rendered":"https:\/\/developers.maplink.global\/?p=3137"},"modified":"2025-08-01T14:05:02","modified_gmt":"2025-08-01T14:05:02","slug":"geocode-api","status":"publish","type":"post","link":"https:\/\/developers.maplink.global\/en\/geocode-api\/","title":{"rendered":"Geocode API"},"content":{"rendered":"\n<p>The purpose of this first endpoint is to <strong>return geographic coordinates from a full or partial address<\/strong>.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"#parameters\" data-type=\"internal\" data-id=\"#parametros\">List of parameters<\/a><\/li>\n\n\n\n<li><a href=\"#exemplo1\" data-type=\"internal\" data-id=\"#exemplo1\">Example 1 &#8211; Search for coordinates from address<\/a><\/li>\n\n\n\n<li><a href=\"#exemplo2\">Example 2 &#8211; Search for coordinates from zip code<\/a><\/li>\n<\/ul>\n\n\n\n<p>To make a request to the Geocode API, you must send the request using the <strong>POST <\/strong>method to the following endpoint:&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/api.maplink.global\/geocode\/v1\/geocode\">https:\/\/api.maplink.global\/geocode\/v2\/geocode<\/a> &#8211; <strong><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-luminous-vivid-amber-color\">POST<\/mark><\/strong><\/li>\n<\/ul>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><strong>Note:<\/strong> Currently returning only to directions located in Brazil.<\/p>\n<\/blockquote>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>The Geocode API has been updated to V2. The endpoint <a href=\"https:\/\/api.maplink.global\/geocode\/v1\/geocode\">https:\/\/api.maplink.global\/geocode\/v1\/geocode<\/a> will still work, but it is recommended to use the new endpoint for more accurate results and because new features will be exclusive to the new version.<\/p>\n<\/blockquote>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"parameters\"><strong>List of parameters<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Mandatory parameters<\/strong><\/h3>\n\n\n\n<p>It is mandatory to provide at least one. It is not necessary to provide all of them. However, the more information provided, the more accurate the result will be.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>road<\/code> &#8211; Street name or part of it;<\/li>\n\n\n\n<li><code>number<\/code> &#8211; Address number. DO NOT provide the additional information.<\/li>\n\n\n\n<li><code>city<\/code> &#8211; City name;<\/li>\n\n\n\n<li><code>state<\/code> &#8211; State;<\/li>\n\n\n\n<li><code>country<\/code> &#8211; Country;<\/li>\n\n\n\n<li><code>district<\/code> &#8211; District name;<\/li>\n\n\n\n<li><code>zipcode<\/code> &#8211; Zip code;<\/li>\n\n\n\n<li><code>label<\/code> &#8211; Complete address. It is recommended to type the text in the order <strong>&#8220;Street name, number, zip code, district, city, state&#8221;<\/strong>.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Optional parameters<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>mainLocation<\/code> &#8211; Object with two parameters to limit the address search area:\n<ul class=\"wp-block-list\">\n<li><code>center<\/code>&nbsp;\u2013 Object with the reference coordinates for the search results. The coordinates can be entered in the following formats:\n<ul class=\"wp-block-list\">\n<li>Object with the <code>lat<\/code> and <code>lon<\/code> properties that represent latitude and longitude respectively. Example: <code>{\"lat\":-23.0852,&nbsp;\"lon\": -46.98020}<\/code><\/li>\n\n\n\n<li>Array with latitude and longitude. Example: <code>[-23.0852,&nbsp; -46.98020]<\/code><\/li>\n\n\n\n<li>Coordinates encoded as geohash. Example:<strong> <\/strong><code>\"6tr6df675\"<\/code><\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><code>radius<\/code>&nbsp;\u2013 Search radius, in meters, from the central point defined in&nbsp;center. If not entered, the default value is 500,000 meters (500 km).<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><code>limit<\/code> &#8211; Limits the number of results returned. It is a query param, informed in the URL itself. For example: <a href=\"https:\/\/api.maplink.global\/geocode\/v2\/geocode?limit=1\">https:\/\/api.maplink.global\/geocode\/v2\/geocode?limit=1<\/a><\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"example1\">Example 1 &#8211; Search for coordinates from address<\/h2>\n\n\n\n<p>In the following example, we will request the coordinates for the address <strong>&#8220;Alameda Campinas, 579, S\u00e3o Paulo &#8211; SP, CEP 01404-100&#8221;<\/strong>. The full request is below:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"json\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">{\n    \"road\": \"Alameda Campinas\",\n    \"number\": 579,\n    \"city\": \"S\u00e3o Paulo\",\n    \"state\": \"SP\",\n    \"zipcode\": \"01404000\"\n}<\/pre>\n\n\n\n<p>The query could also be made using the parameter <code>label<\/code>, as shown in the example below:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"json\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">{\n    \"label\": \"Alameda Campinas, 579, 01404000, S\u00e3o Paulo,SP \",\n    \"city\": \"S\u00e3o Paulo\",\n    \"state\": \"SP\",\n    \"zipcode\": \"01404000\"\n}<\/pre>\n\n\n\n<p>The description of each field present in the response can be found in the following link: <a href=\"https:\/\/developers.maplink.global\/en\/response-structure-geocode-api\/\" data-type=\"post\" data-id=\"3452\">Response structure &#8211; Geocode API<\/a>.<\/p>\n\n\n\n<p>The full response can be found below:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"json\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">{\n    \"results\": [\n        {\n            \"id\": \"6684353bf0662a1541ff635d\",\n            \"address\": {\n                \"road\": \"ALAMEDA CAMPINAS\",\n                \"number\": \"579\",\n                \"district\": \"JARDIM PAULISTA\",\n                \"zipCode\": \"01404000\",\n                \"city\": \"S\u00c3O PAULO\",\n                \"state\": {\n                    \"name\": \"S\u00c3O PAULO\",\n                    \"code\": \"SP\"\n                },\n                \"mainLocation\": {\n                    \"lat\": -23.566287789653508,\n                    \"lon\": -46.6537028592172\n                },\n                \"numberAsInteger\": 579\n            },\n            \"type\": \"ROAD\",\n            \"label\": \"ALAMEDA CAMPINAS, 01404000, JARDIM PAULISTA, S\u00c3O PAULO, SP\",\n            \"score\": 100.0,\n            \"precision\": \"NUMBER_MEDIUM_PRECISION\"\n        },\n        {\n            \"id\": \"6684353bf0662a1541ff637b\",\n            \"address\": {\n                \"road\": \"ALAMEDA CAMPINAS\",\n                \"district\": \"JARDIM PAULISTA\",\n                \"zipCode\": \"01404001\",\n                \"city\": \"S\u00c3O PAULO\",\n                \"state\": {\n                    \"name\": \"S\u00c3O PAULO\",\n                    \"code\": \"SP\"\n                },\n                \"mainLocation\": {\n                    \"lat\": -23.56880844109,\n                    \"lon\": -46.65604091167\n                }\n            },\n            \"type\": \"ROAD\",\n            \"label\": \"ALAMEDA CAMPINAS, 01404001, JARDIM PAULISTA, S\u00c3O PAULO, SP\",\n            \"score\": 95.63067996776094,\n            \"precision\": \"ROAD_CENTROID\"\n        },\n        {\n            \"id\": \"6684353bf0662a1541ff637c\",\n            \"address\": {\n                \"road\": \"ALAMEDA CAMPINAS\",\n                \"district\": \"JARDIM PAULISTA\",\n                \"zipCode\": \"01404003\",\n                \"city\": \"S\u00c3O PAULO\",\n                \"state\": {\n                    \"name\": \"S\u00c3O PAULO\",\n                    \"code\": \"SP\"\n                },\n                \"mainLocation\": {\n                    \"lat\": -23.5727482959,\n                    \"lon\": -46.65984093151\n                }\n            },\n            \"type\": \"ROAD\",\n            \"label\": \"ALAMEDA CAMPINAS, 01404003, JARDIM PAULISTA, S\u00c3O PAULO, SP\",\n            \"score\": 95.63067996776094,\n            \"precision\": \"ROAD_CENTROID\"\n        },\n        {\n            \"id\": \"6684353bf0662a1541ff63b9\",\n            \"address\": {\n                \"road\": \"ALAMEDA CAMPINAS\",\n                \"district\": \"JARDIM PAULISTA\",\n                \"zipCode\": \"01404002\",\n                \"city\": \"S\u00c3O PAULO\",\n                \"state\": {\n                    \"name\": \"S\u00c3O PAULO\",\n                    \"code\": \"SP\"\n                },\n                \"mainLocation\": {\n                    \"lat\": -23.57150846699,\n                    \"lon\": -46.65863824537\n                }\n            },\n            \"type\": \"ROAD\",\n            \"label\": \"ALAMEDA CAMPINAS, 01404002, JARDIM PAULISTA, S\u00c3O PAULO, SP\",\n            \"score\": 95.63067996776094,\n            \"precision\": \"ROAD_CENTROID\"\n        },\n        {\n            \"id\": \"6684353bf0662a1541ff6385\",\n            \"address\": {\n                \"road\": \"ALAMEDA CAMPINAS\",\n                \"district\": \"JARDIM PAULISTA\",\n                \"zipCode\": \"01404100\",\n                \"city\": \"S\u00c3O PAULO\",\n                \"state\": {\n                    \"name\": \"S\u00c3O PAULO\",\n                    \"code\": \"SP\"\n                },\n                \"mainLocation\": {\n                    \"lat\": -23.56631144908,\n                    \"lon\": -46.65360036597\n                }\n            },\n            \"type\": \"ROAD\",\n            \"label\": \"ALAMEDA CAMPINAS, 01404100, JARDIM PAULISTA, S\u00c3O PAULO, SP\",\n            \"score\": 95.57965960825454,\n            \"precision\": \"ROAD_CENTROID\"\n        },\n        {\n            \"id\": \"6684353bf0662a1541ff63a2\",\n            \"address\": {\n                \"road\": \"ALAMEDA CAMPINAS\",\n                \"district\": \"JARDIM PAULISTA\",\n                \"zipCode\": \"01404200\",\n                \"city\": \"S\u00c3O PAULO\",\n                \"state\": {\n                    \"name\": \"S\u00c3O PAULO\",\n                    \"code\": \"SP\"\n                },\n                \"mainLocation\": {\n                    \"lat\": -23.56714829171,\n                    \"lon\": -46.65440337412\n                }\n            },\n            \"type\": \"ROAD\",\n            \"label\": \"ALAMEDA CAMPINAS, 01404200, JARDIM PAULISTA, S\u00c3O PAULO, SP\",\n            \"score\": 95.57965960825454,\n            \"precision\": \"ROAD_CENTROID\"\n        },\n        {\n            \"id\": \"6684353bf0662a1541ff63a3\",\n            \"address\": {\n                \"road\": \"ALAMEDA CAMPINAS 150\",\n                \"district\": \"JARDIM PAULISTA\",\n                \"zipCode\": \"01404900\",\n                \"city\": \"S\u00c3O PAULO\",\n                \"state\": {\n                    \"name\": \"S\u00c3O PAULO\",\n                    \"code\": \"SP\"\n                },\n                \"mainLocation\": {\n                    \"lat\": -23.56343039334,\n                    \"lon\": -46.6507807755\n                }\n            },\n            \"type\": \"ROAD\",\n            \"label\": \"ALAMEDA CAMPINAS 150, 01404900, JARDIM PAULISTA, S\u00c3O PAULO, SP\",\n            \"score\": 92.4522052844475,\n            \"precision\": \"ROAD_CENTROID\"\n        },\n        {\n            \"id\": \"6684353bf0662a1541ff635b\",\n            \"address\": {\n                \"road\": \"ALAMEDA CAMPINAS, 463\",\n                \"district\": \"JARDIM PAULISTA\",\n                \"zipCode\": \"01404902\",\n                \"city\": \"S\u00c3O PAULO\",\n                \"state\": {\n                    \"name\": \"S\u00c3O PAULO\",\n                    \"code\": \"SP\"\n                },\n                \"mainLocation\": {\n                    \"lat\": -23.56559742572,\n                    \"lon\": -46.6529043066\n                }\n            },\n            \"type\": \"ROAD\",\n            \"label\": \"ALAMEDA CAMPINAS, 463, 01404902, JARDIM PAULISTA, S\u00c3O PAULO, SP\",\n            \"score\": 84.89738503108725,\n            \"precision\": \"ROAD_CENTROID\"\n        },\n        {\n            \"id\": \"6684353bf0662a1541ff6359\",\n            \"address\": {\n                \"road\": \"ALAMEDA CAMPINAS, 433\",\n                \"district\": \"JARDIM PAULISTA\",\n                \"zipCode\": \"01404901\",\n                \"city\": \"S\u00c3O PAULO\",\n                \"state\": {\n                    \"name\": \"S\u00c3O PAULO\",\n                    \"code\": \"SP\"\n                },\n                \"mainLocation\": {\n                    \"lat\": -23.56550964281,\n                    \"lon\": -46.65281726051\n                }\n            },\n            \"type\": \"ROAD\",\n            \"label\": \"ALAMEDA CAMPINAS, 433, 01404901, JARDIM PAULISTA, S\u00c3O PAULO, SP\",\n            \"score\": 84.89738503108725,\n            \"precision\": \"ROAD_CENTROID\"\n        },\n        {\n            \"id\": \"6684342ef0662a1541f41a70\",\n            \"address\": {\n                \"road\": \"ALAMEDA LORENA\",\n                \"number\": \"579\",\n                \"district\": \"JARDIM PAULISTA\",\n                \"zipCode\": \"01424000\",\n                \"city\": \"S\u00c3O PAULO\",\n                \"state\": {\n                    \"name\": \"S\u00c3O PAULO\",\n                    \"code\": \"SP\"\n                },\n                \"mainLocation\": {\n                    \"lat\": -23.56994038386821,\n                    \"lon\": -46.65933806789288\n                },\n                \"numberAsInteger\": 579\n            },\n            \"type\": \"ROAD\",\n            \"label\": \"ALAMEDA LORENA, 01424000, JARDIM PAULISTA, S\u00c3O PAULO, SP\",\n            \"score\": 72.05528351949013,\n            \"precision\": \"NUMBER_MEDIUM_PRECISION\"\n        }\n    ],\n    \"found\": 10\n}<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"example2\"><strong>Example 2 &#8211; Search for coordinates from zip code<\/strong><\/h2>\n\n\n\n<p>In this example, we will make a request informing only the zip code 01014-000:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"json\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">{\n    \"zipcode\": \"01014000\"\n}<\/pre>\n\n\n\n<p>The full response can be found below:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"json\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">{\n    \"results\": [\n        {\n            \"id\": \"66843498f0662a1541f9c308\",\n            \"address\": {\n                \"road\": \"RUA BOA VISTA\",\n                \"district\": \"CENTRO\",\n                \"zipCode\": \"01014000\",\n                \"city\": \"S\u00c3O PAULO\",\n                \"state\": {\n                    \"name\": \"S\u00c3O PAULO\",\n                    \"code\": \"SP\"\n                },\n                \"mainLocation\": {\n                    \"lat\": -23.54685803583,\n                    \"lon\": -46.63338712495\n                }\n            },\n            \"type\": \"ROAD\",\n            \"label\": \"RUA BOA VISTA, 01014000, CENTRO, S\u00c3O PAULO, SP\",\n            \"score\": 100.0,\n            \"precision\": \"ROAD_CENTROID\"\n        },\n        {\n            \"id\": \"6684343cf0662a1541f4ea76\",\n            \"address\": {\n                \"road\": \"RUA BOA VISTA\",\n                \"district\": \"CENTRO\",\n                \"zipCode\": \"01014001\",\n                \"city\": \"S\u00c3O PAULO\",\n                \"state\": {\n                    \"name\": \"S\u00c3O PAULO\",\n                    \"code\": \"SP\"\n                },\n                \"mainLocation\": {\n                    \"lat\": -23.5468007,\n                    \"lon\": -46.633395\n                }\n            },\n            \"type\": \"ROAD\",\n            \"label\": \"RUA BOA VISTA, 01014001, CENTRO, S\u00c3O PAULO, SP\",\n            \"score\": 93.37499945930055,\n            \"precision\": \"ROAD_CENTROID\"\n        },\n        {\n            \"id\": \"6684343ef0662a1541f501cf\",\n            \"address\": {\n                \"road\": \"RUA TR\u00caS DE DEZEMBRO\",\n                \"district\": \"CENTRO\",\n                \"zipCode\": \"01014020\",\n                \"city\": \"S\u00c3O PAULO\",\n                \"state\": {\n                    \"name\": \"S\u00c3O PAULO\",\n                    \"code\": \"SP\"\n                },\n                \"mainLocation\": {\n                    \"lat\": -23.5464096,\n                    \"lon\": -46.6338955\n                }\n            },\n            \"type\": \"ROAD\",\n            \"label\": \"RUA TR\u00caS DE DEZEMBRO, 01014020, CENTRO, S\u00c3O PAULO, SP\",\n            \"score\": 93.24999957850984,\n            \"precision\": \"ROAD_CENTROID\"\n        },\n        {\n            \"id\": \"66843464f0662a1541f6dfc7\",\n            \"address\": {\n                \"road\": \"RUA JO\u00c3O BR\u00cdCOLA\",\n                \"district\": \"CENTRO\",\n                \"zipCode\": \"01014010\",\n                \"city\": \"S\u00c3O PAULO\",\n                \"state\": {\n                    \"name\": \"S\u00c3O PAULO\",\n                    \"code\": \"SP\"\n                },\n                \"mainLocation\": {\n                    \"lat\": -23.5454833,\n                    \"lon\": -46.6339965\n                }\n            },\n            \"type\": \"ROAD\",\n            \"label\": \"RUA JO\u00c3O BR\u00cdCOLA, 01014010, CENTRO, S\u00c3O PAULO, SP\",\n            \"score\": 93.24999957850984,\n            \"precision\": \"ROAD_CENTROID\"\n        },\n        {\n            \"id\": \"66843492f0662a1541f96cc3\",\n            \"address\": {\n                \"road\": \"RUA JO\u00c3O BR\u00cdCOLA 24\",\n                \"district\": \"CENTRO\",\n                \"zipCode\": \"01014900\",\n                \"city\": \"S\u00c3O PAULO\",\n                \"state\": {\n                    \"name\": \"S\u00c3O PAULO\",\n                    \"code\": \"SP\"\n                },\n                \"mainLocation\": {\n                    \"lat\": -23.5456536,\n                    \"lon\": -46.6341742\n                }\n            },\n            \"type\": \"ROAD\",\n            \"label\": \"RUA JO\u00c3O BR\u00cdCOLA 24, 01014900, CENTRO, S\u00c3O PAULO, SP\",\n            \"score\": 93.12499969771913,\n            \"precision\": \"ROAD_CENTROID\"\n        },\n        {\n            \"id\": \"66843499f0662a1541f9c677\",\n            \"address\": {\n                \"road\": \"RUA BOA VISTA, 200\",\n                \"district\": \"CENTRO\",\n                \"zipCode\": \"01014903\",\n                \"city\": \"S\u00c3O PAULO\",\n                \"state\": {\n                    \"name\": \"S\u00c3O PAULO\",\n                    \"code\": \"SP\"\n                },\n                \"mainLocation\": {\n                    \"lat\": -23.5459389,\n                    \"lon\": -46.6335149\n                }\n            },\n            \"type\": \"ROAD\",\n            \"label\": \"RUA BOA VISTA, 200, 01014903, CENTRO, S\u00c3O PAULO, SP\",\n            \"score\": 76.42857070419251,\n            \"precision\": \"ROAD_CENTROID\"\n        },\n        {\n            \"id\": \"66843491f0662a1541f96bb6\",\n            \"address\": {\n                \"road\": \"RUA BOA VISTA, 162\",\n                \"district\": \"CENTRO\",\n                \"zipCode\": \"01014902\",\n                \"city\": \"S\u00c3O PAULO\",\n                \"state\": {\n                    \"name\": \"S\u00c3O PAULO\",\n                    \"code\": \"SP\"\n                },\n                \"mainLocation\": {\n                    \"lat\": -23.5463321,\n                    \"lon\": -46.6334634\n                }\n            },\n            \"type\": \"ROAD\",\n            \"label\": \"RUA BOA VISTA, 162, 01014902, CENTRO, S\u00c3O PAULO, SP\",\n            \"score\": 76.42857070419251,\n            \"precision\": \"ROAD_CENTROID\"\n        },\n        {\n            \"id\": \"66843491f0662a1541f96a2d\",\n            \"address\": {\n                \"road\": \"RUA BOA VISTA, 84\",\n                \"district\": \"CENTRO\",\n                \"zipCode\": \"01014901\",\n                \"city\": \"S\u00c3O PAULO\",\n                \"state\": {\n                    \"name\": \"S\u00c3O PAULO\",\n                    \"code\": \"SP\"\n                },\n                \"mainLocation\": {\n                    \"lat\": -23.5469951,\n                    \"lon\": -46.6333665\n                }\n            },\n            \"type\": \"ROAD\",\n            \"label\": \"RUA BOA VISTA, 84, 01014901, CENTRO, S\u00c3O PAULO, SP\",\n            \"score\": 76.42857070419251,\n            \"precision\": \"ROAD_CENTROID\"\n        },\n        {\n            \"id\": \"6684345ef0662a1541f68944\",\n            \"address\": {\n                \"road\": \"RUA S\u00c3O BENTO\",\n                \"district\": \"CENTRO\",\n                \"zipCode\": \"01011000\",\n                \"city\": \"S\u00c3O PAULO\",\n                \"state\": {\n                    \"name\": \"S\u00c3O PAULO\",\n                    \"code\": \"SP\"\n                },\n                \"mainLocation\": {\n                    \"lat\": -23.5484654,\n                    \"lon\": -46.6364675\n                }\n            },\n            \"type\": \"ROAD\",\n            \"label\": \"RUA S\u00c3O BENTO, 01011000, CENTRO, S\u00c3O PAULO, SP\",\n            \"score\": 71.7179494374621,\n            \"precision\": \"ROAD_CENTROID\"\n        },\n        {\n            \"id\": \"6684345af0662a1541f65d6b\",\n            \"address\": {\n                \"road\": \"RUA SANTO ANT\u00d4NIO\",\n                \"district\": \"BELA VISTA\",\n                \"zipCode\": \"01314000\",\n                \"city\": \"S\u00c3O PAULO\",\n                \"state\": {\n                    \"name\": \"S\u00c3O PAULO\",\n                    \"code\": \"SP\"\n                },\n                \"mainLocation\": {\n                    \"lat\": -23.552029,\n                    \"lon\": -46.645678\n                }\n            },\n            \"type\": \"ROAD\",\n            \"label\": \"RUA SANTO ANT\u00d4NIO, 01314000, BELA VISTA, S\u00c3O PAULO, SP\",\n            \"score\": 70.22344421543498,\n            \"precision\": \"ROAD_CENTROID\"\n        }\n    ],\n    \"found\": 10\n}<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>The purpose of this first endpoint is to return geographic coordinates from a full or partial address. To make a request to the Geocode API, you must send the request using the POST method to the following endpoint:&nbsp; Note: Currently returning only to directions located in Brazil. The Geocode API has been updated to V2. [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"categories":[168],"tags":[],"class_list":["post-3137","post","type-post","status-publish","format-standard","hentry","category-geocode-en"],"acf":[],"_links":{"self":[{"href":"https:\/\/developers.maplink.global\/en\/wp-json\/wp\/v2\/posts\/3137","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/developers.maplink.global\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/developers.maplink.global\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/developers.maplink.global\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/developers.maplink.global\/en\/wp-json\/wp\/v2\/comments?post=3137"}],"version-history":[{"count":22,"href":"https:\/\/developers.maplink.global\/en\/wp-json\/wp\/v2\/posts\/3137\/revisions"}],"predecessor-version":[{"id":3490,"href":"https:\/\/developers.maplink.global\/en\/wp-json\/wp\/v2\/posts\/3137\/revisions\/3490"}],"wp:attachment":[{"href":"https:\/\/developers.maplink.global\/en\/wp-json\/wp\/v2\/media?parent=3137"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/developers.maplink.global\/en\/wp-json\/wp\/v2\/categories?post=3137"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/developers.maplink.global\/en\/wp-json\/wp\/v2\/tags?post=3137"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}