A JavaScript library to make requests to the what3words REST API. Now with better support for use within both browser and node based environments! See the what3words public API documentation for more information about how to use our REST API.
The what3words JavaScript wrapper gives you programmatic access to:
npm:
npm install @what3words/api
yarn:
yarn add @what3words/api
If you wish to use the built-in transports you will also need to install the peer dependencies for them. For more information on the default transports read the section on Transports.
const what3words,
{ fetchTransport } = require('@what3words/api');
const apiKey = '<YOUR_API_KEY>';
const config = {
host: 'https://api.what3words.com',
apiVersion: 'v3',
};
const transport = fetchTransport(); // or you can import 'axiosTransport' instead
const w3wService = what3words(apiKey, config, { transport });
// you can uncomment the following lines to set your api key and config after instantiation of the w3w service
// w3wService.setApiKey(apiKey);
// w3wService.setConfig(config);
import what3words, {
ApiVersion,
Transport,
What3wordsService,
axiosTransport,
} from '@what3words/api';
const apiKey = '<YOUR_API_KEY>';
const config: {
host: string;
apiVersion: ApiVersion;
} = {
host: 'https://api.what3words.com',
apiVersion: ApiVersion.Version3,
};
const transport: Transport = axiosTransport();
const w3wService: What3wordsService = what3words(apiKey, config, { transport });
// code continues...
The What3wordsService
provides a quick and easy way to instantiate the API clients that can be used to make requests against the what3words API. It also provides helper functions for setting API configuration, such as host and API version and your API key across the what3words API clients.
The what3words API clients in this library are used to validate request options, serialise and handle request/response and errors against an API endpoint. Each client extends the abstract ApiClient
class.
There is a specific client for each request and you can use them independently of the What3wordsService
. This can be particularly useful if you want to extend the client behaviour, minimise your code or, in a more extreme example, use a custom transport to handle requests differently in each client.
Every client accepts the following parameters:
Parameter | Datatype | Default value |
---|---|---|
apiKey | string | '' |
config | config.host | https://api.what3words.com |
config.apiVersion | v3 |
The transport is a function responsible for executing the request against the API. Given a ClientRequest
the transport should return a promise that resolves to TransportResponse
.
A ClientRequest
consists of the following properties:
Property | Datatype |
---|---|
host* | string |
url* | string |
method* | get or post |
query | object |
headers | object |
body | object |
format* | json or geojson . Default: json |
A TransportResponse
consists of the following properties:
Property | Datatype |
---|---|
status* | number |
statusText* | string |
body* | any |
headers | object |
There are two built-in transports available with this library that you can use; either cross-fetch or axios. By specifying which transport you would like to use on initialisation of the What3wordsService
or a client, if you wish to instantiate a client for yourself.
There are two built-in transports available:
In order to use either of these you will need install the peer dependency. By default cross-fetch is assumed by the What3wordsService
or any instantiated client where no override is provided.
npm:
npm install cross-fetch
or
npm install axios
yarn:
yarn add cross-fetch
or
yarn add axios
You can provide your own custom transport, if you wish to use another library for handling requests, which might be useful if you have other integrations or you are already using a http library elsewhere.
In order to do so you need to define your own Transport
and pass it into the What3wordsService
or client to use it.
The custom Transport
you create should be a function that accepts a ClientRequest
as an argument and returns a promise that resolves to a TransportResponse
.
import what3words, { ClientRequest, TransportResponse } from '@what3words/api';
import superagent from 'superagent';
const API_KEY = '<YOUR_API_KEY>';
const config = {}; // This will ensure we do not override the defaults
function customTransport<ResponseType>(
request: ClientRequest
): Promise<TransportResponse<ResponseType>> {
const {
method,
host,
url,
query = {},
headers = {},
body = {},
format,
} = request;
return new Promise(resolve =>
superagent[method](`${host}${url}`)
.query({ ...query, format })
.send(body || {})
.set(headers)
.end((err, res) => {
if (err || !res)
return resolve({
status: err.status || 500,
statusText: err.response.text || 'Internal Server Error',
headers: err.headers || {},
body: err.response.text || null,
});
const response: TransportResponse<ResponseType> = {
status: res.status,
statusText: res.text,
headers: res.headers,
body: res.body,
};
resolve(response);
})
);
}
const service = what3words(API_KEY, config, { transport: customTransport });
service
.availableLanguages()
.then(({ languages }) => console.log('Available languages', languages));
import {
AutosuggestClient,
AutosuggestOptions,
AutosuggestResponse,
} from '@what3words/api';
const API_KEY = '<YOUR_API_KEY>';
const client: AutosuggestClient = AutosuggestClient.init(API_KEY);
const options: AutosuggestOptions = {
input: 'filled.count.s',
};
client
.run(options)
.then((res: AutosuggestResponse) =>
console.log(`suggestions for "${options.input}"`, res)
);
import {
ConvertToCoordinatesClient,
ConvertToCoordinatesOptions,
FeatureCollectionResponse,
LocationGeoJsonResponse,
LocationJsonResponse,
} from '@what3words/api';
const API_KEY = '<YOUR_API_KEY>';
const client: ConvertToCoordinatesClient =
ConvertToCoordinatesClient.init(API_KEY);
const options: ConvertToCoordinatesOptions = { words: 'filled.count.soap' };
// If you want to retrieve the JSON response from our API
client
.run({ ...options, format: 'json' }) // { format: 'json' } is the default response
.then((res: LocationJsonResponse) =>
console.log('Convert to coordinates', res)
);
// If you want to retrieve the GeoJsonResponse from our API
client
.run({ ...options, format: 'geojson' })
.then((res: FeatureCollectionResponse<LocationGeoJsonResponse>) =>
console.log('Convert to coordinates', res)
);
import {
ConvertTo3waClient,
ConvertTo3waOptions,
FeatureCollectionResponse,
LocationGeoJsonResponse,
LocationJsonResponse,
} from '@what3words/api';
const API_KEY = '<YOUR_API_KEY>';
const client: ConvertTo3waClient = ConvertTo3waClient.init(API_KEY);
const options: ConvertTo3waOptions = {
coordinates: { lat: 51.520847, lng: -0.195521 },
};
// If you want to retrieve the JSON response from our API
client
.run({ ...options, format: 'json' }) // { format: 'json' } is the default response
.then((res: LocationJsonResponse) => console.log('Convert to 3wa', res));
// If you want to retrieve the GeoJsonResponse from our API
client
.run({ ...options, format: 'geojson' })
.then((res: FeatureCollectionResponse<LocationGeoJsonResponse>) =>
console.log('Convert to 3wa', res)
);
import {
AvailableLanguagesClient,
AvailableLanguagesResponse,
} from '@what3words/api';
const API_KEY = '<YOUR_API_KEY>';
const client: AvailableLanguagesClient = AvailableLanguagesClient.init(API_KEY);
client
.run()
.then((res: AvailableLanguagesResponse) =>
console.log('Available Languages', res)
);
import {
GridSectionClient,
GridSectionOptions,
FeatureCollectionResponse,
GridSectionGeoJsonResponse,
GridSectionJsonResponse,
} from '../src';
const API_KEY = '<YOUR_API_KEY>';
const client: GridSectionClient = GridSectionClient.init(API_KEY);
const options: GridSectionOptions = {
boundingBox: {
southwest: { lat: 52.208867, lng: 0.11754 },
northeast: { lat: 52.207988, lng: 0.116126 },
},
};
// If you want to retrieve the JSON response from our API
client
.run({ ...options, format: 'json' }) // { format: 'json' } is the default response
.then((res: GridSectionJsonResponse) => console.log('Grid Section', res));
// If you want to retrieve the JSON response from our API
client
.run({ ...options, format: 'geojson' }) // { format: 'json' } is the default response
.then((res: FeatureCollectionResponse<GridSectionGeoJsonResponse>) =>
console.log('Grid Section', res)
);
The requested box must not exceed 4km from corner to corner, or a BadBoundingBoxTooBig error will be returned. Latitudes must be >= -90 and <= 90, but longitudes are allowed to wrap around 180. To specify a bounding-box that crosses the anti-meridian, use longitude greater than 180.
import {
GridSectionClient,
GridSectionOptions,
FeatureCollectionResponse,
GridSectionGeoJsonResponse,
GridSectionJsonResponse,
} from '../src';
const API_KEY = '<YOUR_API_KEY>';
const client: GridSectionClient = GridSectionClient.init(API_KEY);
const options: GridSectionOptions = {
boundingBox: {
southwest: { lat: 52.208867, lng: 0.11754 },
northeast: { lat: 52.207988, lng: 0.116126 },
},
};
// Search a string for any character sequences that could be three word addresses
client.findPossible3wa('filled.count.soap'); // returns ['filled.count.soap']
client.findPossible3wa(
'this string contains a three word address substring: filled.count.soap'
); // returns ['filled.count.soap']
client.findPossible3wa('filled.count'); // returns []
// Search a string for any character sequences that could be three word addresses
client.isPossible3wa('filled.count.soap'); // returns true
client.isPossible3wa(
'this string contains a three word address substring: filled.count.soap'
); // returns false
client.isPossible3wa('filled.count'); // returns false
// Search a string for any character sequences that could be three word addresses
client.isValid3wa('filled.count.soap'); // returns Promise<true>
client.isValid3wa(
'this string contains a three word address substring: filled.count.soap'
); // returns Promise<false>
client.isValid3wa('filled.count.negative'); // returns Promise<false>