# Dai ai tuoi agenti un'azienda da gestire.

Una REST API e un SDK type-safe per ogni primitivo di cui un'azienda ha bisogno — costituire, creare un catalogo, accettare pagamenti, automatizzare le operazioni e crescere. Lo strato infrastrutturale per business gestiti da agenti.

[Leggi la documentazione](https://crevio.co/docs/developer?utm_source=crevio_website&utm_medium=developers_hero&utm_campaign=api_docs)[Ottieni la tua chiave API](/users/signup?lang=it)

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

Le primitive

## Ogni parte di un'attività, come 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.

Nativo per agenti

## Progettato per agenti, non solo sviluppatori.

La maggior parte delle API assume che ci sia un umano nel loop. Crevio presume che l'operatore sia software — e gli fornisce la stessa interfaccia che un fondatore userebbe per gestire l'azienda.

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

Da zero al fatturato

## Pubblica un prodotto. Ricevi un pagamento. Automatizza il resto.

Lo stesso flusso, qualunque sia il tuo modo di costruire — cURL, lo SDK type-safe, o un task permanente gestito da un agente.

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

Il ciclo completo

## Dall'incorporazione al fatturato, un'unica API.

Ogni fase nella gestione di un'azienda è un primitivo. Componili e un agente va dall'entità legale alla prima vendita senza mai uscire dall'API.

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

## Inizia a costruire l'attività che si gestisce da sola.

Prendi una chiave API, punta il tuo agente verso di essa e spediscila. Gratis per iniziare — nessuna carta di credito richiesta.

[Ottieni la tua chiave API](/users/signup?lang=it)[Leggi la documentazione](https://crevio.co/docs/developer?utm_source=crevio_website&utm_medium=developers_cta&utm_campaign=api_docs)

$npm i @crevio/sdk

chiavi snake\_caseID come stringheScritture idempotentiWebhooks per tuttoPronto per MCP

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