This endpoint returns the coordinates of an address in France.

Request

GET https://api.gateway.inokufu.com/learningobject/v3/address

Headers

This endpoint does not require any API key authentication in the header.

Query Parameters

Parameter

Required

Description

address

Yes

Address to search coordinates for (3 characters minimum). Works only for addresses in France.

Code example

curl "https://api.gateway.inokufu.com/learningobject/v3/address"

Response

Response parameters

Parameter

Description

latitude

Latitude of the searched address

longitude

Longitude of the searched address

address

Original address (query) and corrected address (response).

Response example

Here is an example of the JSON structured response provided by this endpoint.

{
  "latitude": 48.857472,
  "longitude": 2.352443,
  "address": {
    "query": "1 rue du temple paris",
    "response": "1 Rue du Temple 75004 Paris"
  }
}