# Geef je agents een bedrijf om te runnen.

Eén REST API en type-safe SDK voor elk primitief dat een bedrijf nodig heeft — opstarten, een catalogus opbouwen, betalingen accepteren, operaties automatiseren en groeien. De infrastructuurlaag voor door agenten gerunde bedrijven.

[Lees de docs](https://crevio.co/docs/developer?utm_source=crevio_website&utm_medium=developers_hero&utm_campaign=api_docs)[Ontvang je API-sleutel](/users/signup?lang=nl)

TypeScriptcURL

sell.ts

```
import { Crevio } from "@crevio/sdk" const crevio = new Crevio({ apiKey: process.env.CREVIO_API_KEY }) // Spin up a product an agent can sell — in one callconst product = await crevio.products.create({ name: "The Agentic Founder", status: "active",}) console.log(product.url)// → https://acme.crevio.app/products/the-agentic-founder
```

De primitieve onderdelen

## Elk deel van een bedrijf, als een endpoint.

Stripe-style conventions throughout — snake\_case keys, string IDs like `prod_abc123`, idempotent writes, and webhooks on everything.

### Products & catalog

`POST /v1/products`

Courses, downloads, links, and bundles with price variants — the things your business sells.

### Checkouts & payments

`POST /v1/checkouts`

Create checkout sessions and links, collect payments, and settle to the connected account.

### Customers & CRM

`GET /v1/customers`

Leads and buyers with tags, orders, and activity — a full picture of who is paying you.

### Subscriptions

`POST /v1/subscriptions/:id/cancel`

Recurring revenue with trials, pauses, resumes, and cancellations handled for you.

### Invoices & refunds

`POST /v1/invoices`

Issue invoices, void them, and process refunds programmatically against any order.

### AI tasks & triggers

`POST /v1/tasks`

Standing instructions that fire on events — new orders, inbound email, or a schedule.

### Business formation

`POST /v1/formations`

Incorporate a real company, file paperwork, and store documents — from zero to legal entity.

### Socials

`POST /v1/socials/posts`

Publish, schedule, and analyze content across connected social accounts in one place.

### Webhooks & events

`POST /v1/webhook_endpoints`

Subscribe to everything that happens and react in real time with verified deliveries.

Agent-native

## Ontworpen voor agents, niet alleen ontwikkelaars.

De meeste API's gaan ervan uit dat een mens in de lus zit. Crevio gaat ervan uit dat de operator software is — en geeft het dezelfde interface die een oprichter zou gebruiken om het bedrijf te runnen.

### MCP server, not just REST

Connect at mcp.crevio.co and every primitive becomes a tool your agent can call natively — no glue code.

### Tasks that react to events

Register standing instructions that fire on new orders, inbound email, or a cron. Your agent runs the business while you sleep.

### 3,000+ integrations

Event sources connect Gmail, Slack, Calendar and more, so an agent can wire your stack together on its own.

### Incorporate from the API

Form a real company, file the paperwork, and store the documents — from zero to legal entity without leaving the API.

mcp.json

```
// Point any MCP-capable agent at Crevio{ "mcpServers": { "crevio": { "url": "https://mcp.crevio.co/mcp", "headers": { "Authorization": "Bearer $CREVIO_API_KEY" } } }} // Your agent now has every Crevio primitive// available as a callable tool.
```

Van nul naar omzet

## Plaats een product. Neem een betaling aan. Automatiseer de rest.

Dezelfde flow, hoe je het ook bouwt — cURL, de type-safe SDK, of een permanente taak die een agent beheert.

TypeScript SDKcURLAutomate

sell.ts

```
import { Crevio } from "@crevio/sdk" const crevio = new Crevio({ apiKey: process.env.CREVIO_API_KEY }) // 1. Create something to sellconst product = await crevio.products.create({ name: "Pro Membership", status: "active",}) // 2. Give it a priceconst price = await crevio.priceVariants.create({ product: product.id, amountType: "fixed", amount: 9900, currency: "usd",}) // 3. Generate a shareable, payable checkout linkconst link = await crevio.checkoutLinks.create({ name: "Pro Membership", priceVariants: [price.id],}) console.log(link.url) // → a hosted checkout page
```

De volledige lus

## Van incorporatie tot omzet, één API.

Elke fase van het runnen van een bedrijf is een primitief. Stel ze samen en een agent gaat van rechtspersoon naar de eerste verkoop zonder ooit de API te verlaten.

- 
01

### Incorporate
`POST /v1/formations`
- 
02

### Buy a domain
`POST /v1/domains/purchase`
- 
03

### Build the site
`POST /v1/sites`
- 
04

### Deploy
`POST /v1/sites/{id}/deploy`
- 
05

### Build catalog
`POST /v1/products`
- 
06

### Take payments
`POST /v1/checkouts`
- 
07

### Grant access
`POST /v1/experiences/{id}/grants`
- 
08

### Invoice
`POST /v1/invoices`
- 
09

### Add customers
`POST /v1/customers`
- 
10

### Email the list
`POST /v1/broadcasts/{id}/send`
- 
11

### Post to socials
`POST /v1/socials/posts`
- 
12

### Boost with ads
`POST /v1/ads/boost`
- 
13

### Book calls
`POST /v1/bookings`
- 
14

### Automate ops
`POST /v1/tasks`
- 
15

### Refund
`POST /v1/refunds`
- 
16

### Subscribe to events
`POST /v1/webhook_endpoints`
- 
01

### Incorporate
`POST /v1/formations`
- 
02

### Buy a domain
`POST /v1/domains/purchase`
- 
03

### Build the site
`POST /v1/sites`
- 
04

### Deploy
`POST /v1/sites/{id}/deploy`
- 
05

### Build catalog
`POST /v1/products`
- 
06

### Take payments
`POST /v1/checkouts`
- 
07

### Grant access
`POST /v1/experiences/{id}/grants`
- 
08

### Invoice
`POST /v1/invoices`
- 
09

### Add customers
`POST /v1/customers`
- 
10

### Email the list
`POST /v1/broadcasts/{id}/send`
- 
11

### Post to socials
`POST /v1/socials/posts`
- 
12

### Boost with ads
`POST /v1/ads/boost`
- 
13

### Book calls
`POST /v1/bookings`
- 
14

### Automate ops
`POST /v1/tasks`
- 
15

### Refund
`POST /v1/refunds`
- 
16

### Subscribe to events
`POST /v1/webhook_endpoints`

## Begin met bouwen aan het bedrijf dat zichzelf runt.

Pak een API-sleutel, wijs je agent eraan toe en ship. Gratis om te beginnen — geen creditcard vereist.

[Ontvang je API-sleutel](/users/signup?lang=nl)[Lees de docs](https://crevio.co/docs/developer?utm_source=crevio_website&utm_medium=developers_cta&utm_campaign=api_docs)

$npm i @crevio/sdk

snake\_case-sleutelsString-ID'sIdempotente schrijfbewerkingenWebhooks op allesMCP-klaar

Canonical URL: https://crevio.co/nl/developers
