---
title: "FieldRobin SDK documentation"
description: "Official FieldRobin JavaScript and TypeScript SDK for public API and agent discovery."
canonical_url: https://fieldrobin.com/sdk
markdown_url: https://fieldrobin.com/sdk.md
content_type: sdk_docs
product: "FieldRobin"
company: "Doorkeeper Labs LLC"
updated_at: 2026-09-10
language: en
---
# FieldRobin SDK documentation

The official JavaScript/TypeScript SDK is [@fieldrobin/sdk](https://www.npmjs.com/package/@fieldrobin/sdk).

## Install

```sh
npm install @fieldrobin/sdk
```

## Example

```js
import { FieldRobinClient } from "@fieldrobin/sdk";

const client = new FieldRobinClient({
  baseUrl: "https://fieldrobin.com",
});

const catalog = await client.getAiCatalog();
```

Pass an OAuth or API Bearer token with `token` when calling an authenticated surface. The SDK does not access private workspace data unless the caller supplies a token.

- [OpenAPI 3.1 document](https://fieldrobin.com/openapi.json)
- [FieldRobin developer portal](https://fieldrobin.com/developers)
