AgnicPay facilitates Monetization
for this "Earn-Per-Generate" economy.
She built a professional AI therapist chatbot in a weekend. Not a prototype. A real product.
But shipping it meant betting her own money.
She had to:
The complete user journey
Let your users access GPT-5.2, Claude, Gemini, and 340+ AI models. They pay per request. You earn a margin on every call.
They want to use your AI features
One-click OAuth to agnic.ai
Funded by Agnic, not you
With Agnic token ready
GPT-5.2, Claude, Gemini...
On every single request
All the headaches we handle for you
User pays per request
Your existing code + 3 headers = revenue
// Your existing OpenAI code - just add 3 headers
const response = await openai.chat.completions.create({
model: 'openai/gpt-4o',
messages: [{ role: 'user', content: prompt }],
}, {
headers: {
'X-Merchant-Id': 'did:privy:your-merchant-id',
'X-Merchant-Wallet': '0xYourWalletAddress',
'X-Merchant-Fee-Percent': '20',
}
});
curl https://api.agnic.ai/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer agnic_tok_YOUR_TOKEN" \
-H "X-Merchant-Id: did:privy:your-merchant-id" \
-H "X-Merchant-Wallet: 0xYourWalletAddress" \
-H "X-Merchant-Fee-Percent: 20" \
-d '{
"model": "openai/gpt-4o",
"messages": [{"role": "user", "content": "Hello!"}]
}'
from openai import OpenAI
client = OpenAI(
base_url="https://api.agnic.ai/v1",
api_key="agnic_tok_YOUR_TOKEN",
default_headers={
"X-Merchant-Id": "did:privy:your-merchant-id",
"X-Merchant-Wallet": "0xYourWalletAddress",
"X-Merchant-Fee-Percent": "20", # 20% margin
}
)
completion = client.chat.completions.create(
model="openai/gpt-4o",
messages=[{"role": "user", "content": "Hello!"}]
)
print(completion.choices[0].message.content)
Click a question to see the answer
Let users pay per request. You keep the margin.
No billing system, no friction, no risk.