Skip to content

Node.js

AbsTime resolves natural language time expressions for AI systems.

Built for agents, assistants, and workflows that need accurate time resolution.

This library provides convenient access to the AbsTime REST API from TypeScript or JavaScript.

Terminal window
npm install @abstime/sdk
import { AbsTime } from "@abstime/sdk";
const client = new AbsTime({ apiKey: process.env.ABSTIME_API_KEY });
const result = await client.resolve({
text: "the last Friday of this month at 2 pm",
refTime: "2026-04-09T17:30:00Z",
refTimezone: "America/Los_Angeles",
});
console.log(result.time);
console.log(result.view);
// 2026-04-24T21:00:00Z
// Apr 24, 2026 2 PM

Use the same request contract shown throughout the docs:

FieldMeaningUseInstead of
textNatural language time expressiontwo days before ChristmasSchedule a meeting with Lily two days before Christmas.
refTimeUTC reference time2026-04-09T17:30:00Z2026-04-09T10:30:00-07:00
refTimezoneIANA reference timezoneAmerica/Los_AngelesPST
FieldMeaningExampleUse
timeResolved UTC timestamp2026-04-24T21:00:00ZStore, compare, or pass to downstream systems
viewHuman-readable local timeApr 24, 2026 2 PMShow the result in user interfaces
confidenceResolution confidence signalC0Guide result presentation and handling

Understand confidence:

  • C0: a clear resolution; safe to use directly.
  • C1: less obvious but the most reasonable resolution; still safe to use directly.
  • C2: sometimes arguable; user confirmation is recommended.

When the library is unable to connect to the API, for example due to a network failure or timeout, an abstime.APIConnectionError is thrown.

When the API returns a non-success status code, a subclass of abstime.AbsTimeError is thrown.

import * as abstime from "@abstime/sdk";
const client = new abstime.AbsTime();
try {
await client.resolve({
text: "the last Friday of this month at 2 pm",
refTime: "2026-04-09T17:30:00Z",
refTimezone: "America/Los_Angeles",
});
} catch (err) {
if (err instanceof abstime.InputError) {
console.log(`Invalid input: ${err.message}`);
} else if (err instanceof abstime.RateLimitError) {
console.log(`Request ID: ${err.requestId}`);
} else if (err instanceof abstime.APIConnectionError) {
console.log("The API could not be reached.");
}
}

Error codes are as follows:

Status CodeError
400InputError
401AuthenticationError
403PermissionDeniedError
429RateLimitError
>=500InternalError
N/AAPIConnectionError

All successful responses provide a requestId from the X-Request-Id response header.

console.log(result.requestId);

For failed requests, catch the error and read err.requestId:

import * as abstime from "@abstime/sdk";
try {
await client.resolve({
text: "the last Friday of this month at 2 pm",
refTime: "2026-04-09T17:30:00Z",
refTimezone: "America/Los_Angeles",
});
} catch (err) {
if (err instanceof abstime.AbsTimeError) {
console.log(err.requestId);
}
}

The client retries certain transient failures once by default with a short backoff.

Requests time out after 15 seconds by default.

You can configure both when creating the client.

const client = new AbsTime({
timeout: 5000,
maxRetries: 0,
});
  • Node.js 18+