Feelr Documentation
One API call. Any service. Built for AI agents.
Feelr is an agent-friendly API simplification layer. Instead of wrangling OAuth flows, pagination quirks, and vendor-specific response shapes, your agent calls Feelr and gets a clean, consistent response every time.
Get Started
Connectors
Feelr ships with four connectors out of the box:
| Connector | Actions | Auth Type |
|---|---|---|
| GitHub | 10 actions (issues, PRs, repos) | Personal Access Token |
| Slack | 6 actions (messages, channels, users) | OAuth2 (bot token) |
| Stripe | 8 actions (payments, customers, invoices) | API Key |
| Discord | 7 actions (messages, channels, members, roles) | Bot Token |
How It Works
Agent -> Feelr Gateway -> Connector -> Upstream API
|
v
Normalized ResponseEvery response follows the same envelope:
{
"success": true,
"data": { ... },
"meta": {
"has_more": false,
"request_id": "req_abc123"
}
}No more parsing different error shapes per vendor. No more handling pagination differently for every API. Just data.
Last updated on