Skip to main content
modiva.ai
Iniciar sesión
.NET / C# logo

.NET / C# · net8.0

SDK de .NET / C# para la API de Modiva

Un cliente asíncrono de .NET / C# para la API unificada de Modiva. Un cliente tipado llega a todas las 38 integraciones y 460+ herramientas en social, ads, CRM y e-commerce, con autenticación, reintentos, paginación e idempotencia gestionados por ti.

Consigue tu clave de APIVer en GitHubLee la documentación

Instalación

dotnet add package Modiva

Requiere net8.0. Define MODIVA_API_KEY en tu entorno: el cliente la lee automáticamente.

Inicio rápido

Conecta una cuenta en el panel, crea una clave de API y luego publica en pocas líneas.

using Modiva;

using var modiva = new ModivaClient(
    new ModivaOptions { ApiKey = "mk_live_..." });

// List connected accounts
var connections = await modiva.Connections.ListAsync();

// Publish a post (idempotent — safe to retry)
await modiva.Social.Posts.CreateAsync(new CreatePostParams
{
    ConnectionId = connections[0].Id,
    Text = "Hello from the Modiva .NET SDK!",
});

Lo que obtienes

  • Un cliente para todas las 38 integraciones: sin una biblioteca por plataforma.
  • Métodos tipados para posts, comentarios, DM y analíticas, más una superficie de herramientas genérica para cada una de las 460+ herramientas.
  • Autenticación con clave Bearer desde MODIVA_API_KEY; el OAuth del proveedor y la renovación de tokens se gestionan en el servidor.
  • Reintentos automáticos con backoff, creaciones idempotentes y paginación integrada.
  • Con licencia MIT y de código abierto en GitHub.

Preguntas frecuentes

How do I install the Modiva .NET / C# SDK?
Run `dotnet add package Modiva`. It requires net8.0. Then set MODIVA_API_KEY in your environment (create a key in the dashboard) and instantiate the client.
Is the .NET / C# SDK free and open source?
Yes — it's MIT-licensed and published on GitHub at modiva-dev/modiva-dotnet. Read the source, file issues and contribute.
Which integrations does the .NET / C# SDK support?
All of them. One client reaches every one of the 38 integrations — Instagram, TikTok, Google Ads, HubSpot, Shopify and more — through the same typed methods and a generic tool surface.

Otros lenguajes

Node.js / TypeScriptPythonGoRubyJavaPHPRust

← Todos los SDK de Modiva

Empieza a construir con .NET / C#
Gratis para empezar · Primeras 3 cuentas conectadas gratis · Clave de API en un clic
Crea una cuenta gratis
.NET / C# SDK — Modiva