# @thirdweb-dev/insight

> This package is a thin openAPI wrapper for insight, our in-house indexer.

Latest version **1.1.1** (published 2025-07-28) · Apache-2.0 license · 0 weekly downloads

## Install

```sh
npm install @thirdweb-dev/insight
pnpm add @thirdweb-dev/insight
yarn add @thirdweb-dev/insight
bun add @thirdweb-dev/insight
```

## Health

**Score 50/100 (C)** — status: stable.

Positive: has types; esm support; no vulnerabilities; high maintenance score.

Warnings: low downloads.

Negative: stale.

## Facts

| | |
|---|---|
| Version | 1.1.1 |
| Published | 2025-07-28 |
| First published | 2025-04-15 |
| Weekly downloads | 0 |
| License | Apache-2.0 |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Node | >=18 |
| Dependencies | 0 |
| Unpacked size | 665 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 639 |
| Author | thirdweb eng |
| Maintainers | yash90, furqantw, jnsdls, joaquim-verges, jakeloo, thirdweb-bot |

## Links

- npm: https://www.npmjs.com/package/@thirdweb-dev/insight
- Repository: https://github.com/thirdweb-dev/js.git#main
- Homepage: https://github.com/thirdweb-dev/js/tree/main#readme
- Issues: https://github.com/thirdweb-dev/js/issues
- npm.io page: https://npm.io/package/@thirdweb-dev/insight

## Recent versions

- 1.1.1 (latest) — 2025-07-28
- 1.1.0-nightly-e6504340616ef680226e5224ba89aae22a5fa57a-20250626000427 (nightly) — 2025-06-26
- 1.1.0 — 2025-06-26
- 1.0.2 — 2025-05-30
- 1.0.1 — 2025-05-29
- 1.0.1-nightly-91750eddc6cc3eb20c36b74490d820b92ea5500f-20250529000432 — 2025-05-29
- 1.0.1-nightly-e14a1349e120b684c5cbf05a80eca5f1a7a2ad5d-20250528000438 — 2025-05-28
- 1.0.1-nightly-ec7bc2bb1e58f1a45d01eec0f308bc0f86479050-20250527000403 — 2025-05-27
- 1.0.0 — 2025-04-18
- 1.0.0-nightly-4cf15a2475fce1c5b55d19f7cf51ab080e80e33f-20250418000341 — 2025-04-18
- 1.0.0-nightly-e7b01108037ebef07fba95f888be1905c8fab5df-20250417000348 — 2025-04-17
- 1.0.0-nightly-64bd603301b3067b6a69a29f66a28dee7ffa38f5-20250416000349 — 2025-04-16
- 1.0.0-nightly-4c1f384a635054a8cfaaa487e3ba7ada63b221ec-20250415110008 — 2025-04-15

## README

# Insight OpenAPI TypeScript Wrapper

This package is a thin openAPI wrapper for insight, our in-house indexer.

## Configuration

```ts
import { configure } from "@thirdweb-dev/insight";

// call this once at the startup of your application
configure({
  clientId: "<YOUR_CLIENT_ID>",
});
```

## Example Usage

```ts
import { getV1Events } from "@thirdweb-dev/insight";

const events = await getV1Events({
  query: {
    chain: [1, 137],
    filter_address: "0x1234567890123456789012345678901234567890",
  },
});
```

This package was autogenerated from the [Insight openAPI spec](https://insight-api.thirdweb.com/reference) using [@hey-api/openapi-ts](https://github.com/hey-api/openapi-ts)

---
_Source: https://npm.io/package/@thirdweb-dev/insight · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
