# LinkedIn API for AI agents - Veezee

Veezee is a LinkedIn data API built to be USED by an agent, not just called from one: the agent discovers it, provisions its own key, and meters its own spend. LinkedIn only, seven tools, over MCP or REST.

## Working in one call, no signup

Most data APIs make a human sign up in a dashboard before an agent can do anything. Veezee does not:

```
curl -X POST https://api.veezee.io/v1/provision
```

That single call returns an `api_key` (500 credits free, no signup, no card; the key is shown exactly once, so store it) plus a `claim_url` and `upgrade_url` to hand to your human later. Before even that, a keyless taste works: 20 credits per IP per day of cached data with no key at all:

```
curl "https://api.veezee.io/v1/companies?identifier=microsoft"
```

Over MCP, add `https://mcp.veezee.io/mcp` (streamable-http) and call the `provision` tool; later calls in the same session authenticate automatically.

## The seven tools

- **provision** (0 credits): Create a free trial account. [/docs/tools/provision](https://veezee.io/docs/tools/provision)
- **resolve_url** (2 credits): Identify a LinkedIn URL. [/docs/tools/resolve_url](https://veezee.io/docs/tools/resolve_url)
- **get_profile** (4 credits): Get a LinkedIn person profile. [/docs/tools/get_profile](https://veezee.io/docs/tools/get_profile)
- **search_people** (10 credits): Search people on LinkedIn. [/docs/tools/search_people](https://veezee.io/docs/tools/search_people)
- **get_company** (4 credits): Get a LinkedIn company. [/docs/tools/get_company](https://veezee.io/docs/tools/get_company)
- **get_posts** (4 credits): Get recent posts by a person or company. [/docs/tools/get_posts](https://veezee.io/docs/tools/get_posts)
- **get_usage** (0 credits): Check credits and recent charges. [/docs/tools/get_usage](https://veezee.io/docs/tools/get_usage)

## Ways in

Default path: use MCP when your host supports it, the SDK otherwise, REST as the fallback; the CLI and skills are conveniences layered on top of those.

## Honest limits

LinkedIn only: no other platform. Seven tools: no job listings, no contact emails or phone numbers, no recurring monitoring. Purchases run through Stripe in TEST mode today (a $20.00 minimum purchase applies once live charging is enabled, a later and explicitly gated step). No uptime guarantee is published.

## Read next

- One-fetch machine-readable decision card: https://veezee.io/product.json
- Tool-selection eval evidence (dated, with prompts and models): https://veezee.io/evidence
- Credit prices, packs, and worked example costs: https://veezee.io/pricing
