AI Tools
Gemini-powered tools for link matching, content generation, and deal discovery
Smart Link Matcher
Paste any URL — AI matches it to the best affiliate program across all networks. Domain match first, then AI fuzzy match.
POST /api/v1/ai/match-link
{"url": "https://nike.com/shoes/air-max"}Content Generator
Select a program and content type (social/email/blog/deal alert). Get AI-written promotional copy with CTA and affiliate link.
POST /api/v1/ai/generate-content
{"program_id": 42, "type": "social", "tone": "casual"}Deal Discovery
AI scans product feeds for trending deals, price drops, and high-commission opportunities. Feed this to your bot for auto-posting.
GET /api/v1/ai/deals
?category=electronics&min_discount=20
For Bots
All AI tools are API-first. Your vibe-coded project can call these endpoints directly with your API key. No browser needed — just HTTP requests.
# Match a URL to an affiliate program
curl -X POST http://localhost:3000/api/v1/ai/match-link \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com/product"}'
# Response:
{
"matched": true,
"program": "Example Store",
"network": "Impact",
"affiliate_url": "https://example.ojrq.net/c/437971/...",
"tracking_url": "/t/abc123def456"
}