> ## Documentation Index
> Fetch the complete documentation index at: https://docs.venepagos.com.ve/llms.txt
> Use this file to discover all available pages before exploring further.

# Inicio rápido

> Comienza a recibir pagos con VenePagos en 3 simples pasos

## 1. Crea tu cuenta

Regístrate en VenePagos con tu correo electrónico y completa la verificación KYC (identidad).

<CodeGroup>
  ```bash cURL theme={null}
  curl -X POST https://api.venepagos.com.ve/api/v1/auth/register \
    -H "Content-Type: application/json" \
    -d '{
      "email": "tu@email.com",
      "password": "tuPasswordSeguro",
      "name": "Tu Nombre",
      "phone": "+584121234567"
    }'
  ```

  ```javascript Node.js theme={null}
  const response = await fetch('https://api.venepagos.com.ve/api/v1/auth/register', {
    method: 'POST',
    headers: { 'Content-Type': 'application/json' },
    body: JSON.stringify({
      email: 'tu@email.com',
      password: 'tuPasswordSeguro',
      name: 'Tu Nombre',
      phone: '+584121234567'
    })
  });

  const data = await response.json();
  console.log(data.accessToken);
  ```

  ```python Python theme={null}
  import requests

  response = requests.post('https://api.venepagos.com.ve/api/v1/auth/register', json={
      'email': 'tu@email.com',
      'password': 'tuPasswordSeguro',
      'name': 'Tu Nombre',
      'phone': '+584121234567'
  })

  data = response.json()
  print(data['accessToken'])
  ```
</CodeGroup>

Recibirás un código OTP en tu correo para verificar tu cuenta.

## 2. Vincula tu cuenta bancaria

Asocia tu cuenta bancaria venezolana para recibir los pagos directamente.

<Steps>
  <Step title="Inicia sesión">
    Autentícate para obtener tu `accessToken`.
  </Step>

  <Step title="Crea un merchant">
    Registra tu negocio con nombre, RIF y descripción.
  </Step>

  <Step title="Configura tu tienda">
    Personaliza tu tienda con logo, banner y datos de tu cuenta bancaria.
  </Step>
</Steps>

## 3. Comienza a cobrar

Tienes dos opciones para recibir pagos:

### Opción A: Links de pago (sin código)

Genera links de pago personalizados desde el dashboard y compártelos por WhatsApp, email o redes sociales.

### Opción B: Integración por API

Usa tu API key para integrar pagos directamente en tu plataforma.

```bash theme={null}
curl -X POST https://api.venepagos.com.ve/api/v1/api-keys \
  -H "Authorization: Bearer TU_ACCESS_TOKEN" \
  -H "Content-Type: application/json"
```

<Note>
  Usa el entorno **sandbox** para probar tu integración sin riesgo. Las API keys de prueba tienen el prefijo `vp_test_`.
</Note>

## Próximos pasos

<Columns cols={2}>
  <Card title="Autenticación" icon="key" href="/autenticacion">
    Entiende el sistema de tokens JWT.
  </Card>

  <Card title="Sandbox" icon="flask" href="/conceptos/sandbox">
    Prueba tu integración en modo test.
  </Card>

  <Card title="Webhooks" icon="bell" href="/integraciones/webhooks">
    Configura notificaciones en tiempo real.
  </Card>

  <Card title="API Reference" icon="code" href="/api-reference/introduction">
    Explora todos los endpoints.
  </Card>
</Columns>
