@datanest-earth/nodejs-client
v0.8.3
Published
Datanest API Client to easily create signed requests
Downloads
825
Maintainers
Readme
Datanest API Client for Node.js
This is a Node JS implementation of datanest.earth's REST API client. You should use this lightweight package to easily start using the API.
If you are not using Node.js you can use this package as an implementation example.
Please see the Datanest API documentation for more information. If you need help please contact [email protected] for technical support.
Obtaining API Keys
Your Datanest Account Manager can generate API keys, from the Company Settings page, API Keys section.
If you cannot see the API Keys section it is possible your subscription does not include API access. Please contact us to request API access.
Requirements
If you wish to use this Node package, you will need to have Node installed on your machine. This package should work with both Bun and Deno runtime alternatives (unverified)
We recommend the latest stable version of Node.
- Tested on Node v20.8.0
- Fetch API is required, available in Node v18.0+ (unverified)
node-fetch may allow for earlier versions
Installation for Node projects
Install from NPM using your preferred package manager.
npm install --save @datanest-earth/nodejs-client
pnpm add @datanest-earth/nodejs-client
bun add @datanest-earth/nodejs-client
Authentication
Datanest's API uses API keys to authenticate requests along with a HMAC signature (see docs) (see implementation example.) The signature may be tricky to implement, so we recommend using this package to get started.
Security Notice
Do not expose your API key and secret in client-side code. This package is intended for server-side use only.
Full REST API Documentation
See the Postman Documentation
Getting Started with Node.js
The client will automatically look for env variables to get the API key and secret. You can use the dotenv package to parse a .env
file.
Place your API key in a .env
DATANEST_API_KEY=your-api-key
DATANEST_API_SECRET=your-api-secret
Simply instantiate DatanestClient
import DatanestClient from '@datanest-earth/nodejs-client';
import dotenv from 'dotenv';
// Load .env
dotenv.config();
const client = new DatanestClient();
import DatanestClient from '@datanest-earth/nodejs-client';
const client = new DatanestClient('your-api-key', 'your-api-secret');
const { DatanestClient, projects } = require("@datanest-earth/nodejs-client");
Make GET, POST, PATCH, PUT, DELETE requests
The client exposes the following methods to make requests to the API.
client.get(path, params?: Record<string, any>, optionalFetchOptions);
client.post(path, params?: Record<string, any>, optionalFetchOptions);
client.patch(path, params?: Record<string, any>, optionalFetchOptions);
client.put(path, params?: Record<string, any>, optionalFetchOptions);
client.delete(path, params?: Record<string, any>, optionalFetchOptions);
The underlying Fetch API is used, you can pass in any valid Fetch options as the third argument. For example, to add a custom header.
import DatanestClient from '@datanest-earth/nodejs-client';
import dotenv from 'dotenv';
// Load .env
dotenv.config();
async function listProjects() {
const client = new DatanestClient();
client.setClientId("Company A Version 1");
const response = await client.get('v1/projects');
const projects = await response.json();
console.log(projects);
}
listProjects();
Node API Endpoints and Types
This package includes endpoints with type definitions.
Function & Type Definitions:
- Projects API
- Gather API
- Enviro API
- Integrations API
- Company Users API
- Project Teams API
- Files API
- Maps API
- Company Workflows & Custom Roles API
- Webhook Types and Signature Verification
You can also see the TypeScript source code, this can be useful to understand the API request & responses type definitions.
import DatanestClient, { projects as projectEndpoints } from '@datanest-earth/nodejs-client';
import dotenv from 'dotenv';
// Load .env
dotenv.config();
async function listProjects() {
const client = new DatanestClient();
client.setClientId("Company A Version 1");
const page = 1;
const projects = await projectEndpoints.listProjects(client, page);
console.log(projects);
}
listProjects();
Testing and Dedicated Hosting Endpoints
You can override the default API endpoint by setting the DATANEST_API_BASE_URL
environment variable.
DATANEST_API_BASE_URL=https://app.datanest.earth/api
import DatanestClient from '@datanest-earth/nodejs-client';
const client = new DatanestClient();
client.setBaseUrl('https://app.datanest.earth/api');
Handling Errors
The client will throw a DatanestResponseError
when the API returns a non-200/300 status code.
import DatanestClient, { DatanestResponseError } from '@datanest-earth/nodejs-client';
// Disable the default behavior of logging error status and response data
client.setLogErrors(false);
// With await try-catch
try {
await client.get('v1/projects/' + projectUuid);
} catch (err) {
if (err instanceof DatanestResponseError) {
if (err.status === 404) {
// Something was not found
return;
}
console.error(err.message, err.data);
}
throw err;
}
// With callbacks
client.get('v1/projects/' + projectUuid)
.then(response => {
if (!response.ok) {
throw new DatanestResponseError(response);
}
return response.json();
})
.then(data => {
console.log(data);
})
.catch(err => {
if (err instanceof DatanestResponseError) {
if (err.status === 404) {
// Something was not found
return;
}
console.error(err.message, err.data);
}
throw err;
});
Error Codes
- 400: Bad Request
- 401: Unauthorized, likely an invalid API key or request signature
- 403: Forbidden
- 404: Not Found, either the url is incorrect or UUID or ID provided does not exist
- 405: Method Not Allowed
- 422: Unprocessable Entity, this indicates a validation error from your request body
- 429: Too Many Requests, you are being rate-limited
- 500: Internal Server Error - These should not happen, please contact support there is likely an issue on our end