# Gib deinen Agenten ein Unternehmen zu betreiben.

Eine REST-API und ein typsicheres SDK für jedes Primitive, das ein Unternehmen braucht — gründen, einen Katalog erstellen, Zahlungen entgegennehmen, Abläufe automatisieren und wachsen. Die Infrastrukturschicht für agentengesteuerte Unternehmen.

[Docs lesen](https://crevio.co/docs/developer?utm_source=crevio_website&utm_medium=developers_hero&utm_campaign=api_docs)[API‑Schlüssel holen](/users/signup?lang=de)

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
```

Die Primitiven

## Jeder Teil eines Geschäfts als 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

## Für Agenten entwickelt, nicht nur Entwickler.

Die meisten APIs gehen davon aus, dass ein Mensch im Loop ist. Crevio geht davon aus, dass der Betreiber Software ist — und bietet ihr dieselbe Oberfläche, die ein Gründer verwenden würde, um das Unternehmen zu führen.

### 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.
```

Von null zu Umsatz

## Produkt eintragen. Zahlung erhalten. Den Rest automatisieren.

Der gleiche Ablauf — egal wie du baust: cURL, das typsichere SDK oder eine dauerhafte Aufgabe, die ein Agent übernimmt.

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
```

Die komplette Schleife

## Von der Gründung zum Umsatz, eine API.

Jede Phase beim Betrieb eines Unternehmens ist ein Primitive. Setzen Sie sie zusammen, und ein Agent gelangt von der juristischen Person bis zum ersten Verkauf, ohne jemals die API zu verlassen.

- 
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`

## Baue das Geschäft, das sich selbst betreibt.

Hol dir einen API‑Schlüssel, richte deinen Agenten darauf aus und veröffentliche. Kostenlos starten — keine Kreditkarte erforderlich.

[API‑Schlüssel holen](/users/signup?lang=de)[Docs lesen](https://crevio.co/docs/developer?utm_source=crevio_website&utm_medium=developers_cta&utm_campaign=api_docs)

$npm i @crevio/sdk

snake\_case‑SchlüsselString‑IDsIdempotente SchreibvorgängeWebhooks für allesMCP‑bereit

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