# Dale a tus agentes un negocio que administrar.

Una API REST y un SDK tipado para cada primitiva que una empresa necesita — incorporar, crear un catálogo, aceptar pagos, automatizar operaciones y crecer. La capa de infraestructura para negocios gestionados por agentes.

[Leer la documentación](https://crevio.co/docs/developer?utm_source=crevio_website&utm_medium=developers_hero&utm_campaign=api_docs)[Obtén tu clave API](/users/signup?lang=es)

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

Las primitivas

## Cada parte de un negocio, como un 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 para agentes

## Diseñado para agentes, no solo desarrolladores.

La mayoría de las APIs asumen que hay un humano en el bucle. Crevio asume que el operador es software — y le ofrece la misma interfaz que un fundador usaría para dirigir la empresa.

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

De cero a ingresos

## Lista un producto. Acepta un pago. Automatiza el resto.

El mismo flujo, como tú lo construyas — cURL, el SDK con tipos, o una tarea en curso que un agente administre.

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

El ciclo completo

## De la constitución a los ingresos, una API.

Cada etapa de dirigir una empresa es una primitiva. Combínalas y un agente pasa de entidad legal a primera venta sin salir nunca de la 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`

## Empieza a construir el negocio que se administra solo.

Consigue una clave API, apunta tu agente a ella y lanza. Gratis para empezar — no se requiere tarjeta de crédito.

[Obtén tu clave API](/users/signup?lang=es)[Leer la documentación](https://crevio.co/docs/developer?utm_source=crevio_website&utm_medium=developers_cta&utm_campaign=api_docs)

$npm i @crevio/sdk

Claves en snake\_caseIDs como cadenasEscrituras idempotentesWebhooks para todoListo para MCP

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