For Agents
Browse and apply to Everflow offers, pull affiliate click and conversion reports, fetch creatives, and manage postbacks for partner marketing automation.
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Everflow Affiliate API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with Everflow Affiliate API API.
List the offers an affiliate is eligible to promote
Read full offer detail before deciding to apply
Apply to a specific offer programmatically
Pull affiliate-side click reporting filtered by date and offer
GET STARTED
Use for: List the Everflow offers I am eligible for, Get the detail for a specific Everflow offer, I want to apply to an Everflow offer, Pull this week's click report from Everflow
Not supported: Does not handle advertiser-side offer creation, payout disbursement, or fraud scoring — use for affiliate-side offer browsing, applications, reporting, and postbacks only.
The Everflow Affiliate API is the partner-side surface of the Everflow partner marketing platform. Nine operations across 8 paths cover browsing offers an affiliate is eligible for, applying to offers, pulling click and conversion reporting, listing creatives, and managing postbacks. Authentication is via API key, and the API is the right surface for affiliates who want to automate creative pulls, reconcile clicks and conversions against their own analytics, and feed pixel postbacks into other systems.
Pull conversion reporting and entity summaries for performance reconciliation
List creative assets attached to live offers
List and create postbacks for server-to-server tracking
Patterns agents use Everflow Affiliate API API for, with concrete tasks.
★ Performance Reconciliation
Reconcile Everflow-reported clicks and conversions against the affiliate's own analytics to detect tracking gaps and disputed conversions early. The /affiliates/reporting/clicks and /affiliates/reporting/conversions endpoints expose structured data filtered by date and offer. Reconciliation reports run daily in minutes per affiliate.
Pull /affiliates/reporting/clicks and /affiliates/reporting/conversions for the last 7 days and post any offer with a conversion-rate drop greater than 30 percent to Slack
Offer Discovery and Application
Surface eligible offers in an affiliate-facing dashboard and let affiliate managers apply to new offers without leaving the dashboard. The /affiliates/offers endpoints list eligible offers, return offer detail, and accept applications. This collapses what is normally a multi-tab process into a single view, saving managers minutes per offer.
List all Everflow offers, filter by category 'finance', and apply to the top three by payout via /affiliates/offers/{offerId}/apply
Creative Asset Pipeline
Pull every creative for the offers an affiliate runs and push them into a creative library or asset management system, so media buyers always work from the latest banners and copy. /affiliates/creatives lists the available creatives. The pipeline runs in seconds per offer and saves designers from manual exports.
List creatives via /affiliates/creatives and sync any new asset to the team's Google Drive 'Affiliate Creatives' folder
AI Agent Integration via Jentic
Wire Everflow to an AI assistant through Jentic so an affiliate manager can ask 'what was my conversion rate yesterday?' or 'apply me to this new offer' in chat. Jentic search resolves the intent to the right Everflow operation and isolates the API key in the vault. Setup takes minutes once Everflow is connected.
Search Jentic for 'everflow click report', load /affiliates/reporting/clicks, and answer 'how many clicks did offer 123 get yesterday?'
9 endpoints — the everflow affiliate api is the partner-side surface of the everflow partner marketing platform.
METHOD
PATH
DESCRIPTION
/affiliates/offers
List eligible offers
/affiliates/offers/{offerId}
Get offer detail
/affiliates/offers/{offerId}/apply
Apply to an offer
/affiliates/reporting/clicks
Run a click report
/affiliates/reporting/conversions
Run a conversion report
/affiliates/reporting/entity/summary
Run an entity summary report
/affiliates/creatives
List creatives
/affiliates/postbacks
Create a postback
/affiliates/offers
List eligible offers
/affiliates/offers/{offerId}
Get offer detail
/affiliates/offers/{offerId}/apply
Apply to an offer
/affiliates/reporting/clicks
Run a click report
/affiliates/reporting/conversions
Run a conversion report
Three things that make agents converge on Jentic-routed access.
Credential isolation
The Everflow API key is stored encrypted in the Jentic vault. Agents call operations through scoped execution tokens, so the raw key never enters the model context or chat history.
Intent-based discovery
Agents search Jentic by intent (e.g., 'everflow click report') and Jentic returns the matching operation with its schema, so the agent supplies only the date range and offer filters.
Time to first call
Direct integration: 1-2 days for reporting pulls, retries, and key rotation. Through Jentic: under 30 minutes from sign-up to executing the first report.
Alternatives and complements available in the Jentic catalogue.
Refersion API
Affiliate marketing platform aimed at e-commerce brands
Choose Refersion when the brand sells through Shopify or BigCommerce and wants tighter e-commerce coupling than Everflow provides.
Awin API
Global affiliate network with publisher and advertiser tooling
Pick Awin when the use case is joining an established affiliate network rather than running a self-managed partner programme.
Mailchimp Marketing API
Send affiliate-specific email campaigns with creatives pulled from Everflow
Use Mailchimp downstream of Everflow to deliver new-creative announcements and offer launches to affiliates.
Slack API
Push Everflow alerts and reports into Slack channels
Use Slack to broadcast Everflow click and conversion alerts to the affiliate management team.
Specific to using Everflow Affiliate API API through Jentic.
What authentication does the Everflow Affiliate API use?
The API uses an API key (ApiKeyAuth scheme). Through Jentic, the key is stored in the encrypted vault and injected at execution time, so the agent never sees the raw secret.
Can I apply to an Everflow offer through the API?
Yes. POST /affiliates/offers/{offerId}/apply submits an application for a specific offer. Use GET /affiliates/offers and GET /affiliates/offers/{offerId} first to confirm eligibility and payout terms.
What are the rate limits for the Everflow Affiliate API?
The OpenAPI spec does not declare explicit rate limits. Treat reporting endpoints as relatively expensive and avoid tight polling; back off on HTTP 429 and check Everflow developer documentation for current published limits.
How do I pull a click report through Jentic?
Search Jentic for 'everflow click report', load the POST /affiliates/reporting/clicks operation, and execute it with your date range and offer filters. Install with pip install jentic and use the async search, load, execute pattern.
Does the Everflow Affiliate API support creating postbacks?
Yes. POST /affiliates/postbacks creates a postback and GET /affiliates/postbacks lists existing ones. This is the right surface for wiring server-to-server conversion tracking into other analytics tools.
Can I get conversion data without exporting CSVs?
Yes. POST /affiliates/reporting/conversions returns structured conversion data filtered by offer and date range, removing the need to manually export from the Everflow dashboard.
/affiliates/reporting/entity/summary
Run an entity summary report
/affiliates/creatives
List creatives
/affiliates/postbacks
Create a postback