Skip to main content

Welcome to Mavera

Mavera provides AI-powered APIs for marketing intelligence, customer research, and content generation. Our APIs deliver real-time customer insights, persona-driven chat completions, and comprehensive market analysis.

Core APIs

Why Mavera?

1

Persona Intelligence

Every API call can be enhanced with specialized personas that inject domain expertise into AI responses. Choose from 50+ pre-built personas or create custom ones tailored to your target audience.
2

OpenAI SDK Compatible

Our Chat API is fully compatible with OpenAI SDKs. Just change the base URL and add a persona_id to supercharge your AI responses with audience insights.
3

Comprehensive Research

Mave agent conducts multi-phase research (Triage → Planning → Research → Execution → Validation) with built-in fact-checking and source attribution.
4

Credit-Based Pricing

Pay only for what you use. Every API response includes credits_used so you can track costs in real-time with full transparency.

Quick Example

from openai import OpenAI

client = OpenAI(
    api_key="mvra_live_your_key_here",
    base_url="https://app.mavera.io/api/v1",
)

response = client.chat.completions.create(
    model="mavera-1",
    messages=[
        {"role": "user", "content": "How do millennials feel about remote work?"}
    ],
    extra_body={"persona_id": "YOUR_PERSONA_ID"},
)

print(response.choices[0].message.content)
print(f"Credits used: {response.usage.credits_used}")

Base URL

All API requests should be made to:
https://app.mavera.io/api/v1

Need Help?