chatgpt-api/docs/tools/people-data-labs.mdx

46 wiersze
972 B
Plaintext
Czysty Zwykły widok Historia

2024-08-07 02:19:51 +00:00
---
title: People Data Labs
description: People & company data enrichment.
---
<Warning>
2024-08-17 11:48:50 +00:00
People Data Labs tends to be more expensive than other similar data providers.
2024-08-07 02:19:51 +00:00
The author recommends you stay away from them.
</Warning>
- package: `@agentic/people-data-labs`
- exports: `class PeopleDataLabsClient`, `namespace peopledatalabs`
- env vars: `PEOPLE_DATA_LABS_API_KEY`
- [source](https://github.com/transitive-bullshit/agentic/blob/main/packages/people-data-labs/src/people-data-labs-client.ts)
2024-08-17 11:03:17 +00:00
- [people data labs api docs](https://www.peopledatalabs.com)
2024-08-07 02:19:51 +00:00
## Install
<CodeGroup>
```bash npm
npm install @agentic/people-data-labs
```
```bash yarn
yarn add @agentic/people-data-labs
```
```bash pnpm
pnpm add @agentic/people-data-labs
```
</CodeGroup>
## Usage
```ts
import { PeopleDataLabsClient } from '@agentic/people-data-labs'
const pdl = new PeopleDataLabsClient()
const res = await pdl.companyLookup({
query: {
website: 'apple.com'
}
})
```