For Agents
Programmatically list campaigns, add new candidates. Covers 6 operations with apiKey authentication.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the SourceWhale 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.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fsourcewhale.app%2Fsourcewhale" | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fsourcewhale.app%2Fsourcewhale" | 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 SourceWhale API.
List campaigns
Add new candidates
Modify candidate data
Search candidates
GET STARTED
Use for: I need to campaigns, I want to add new candidates, Search for modify candidate data, Find all candidates
Not supported: Does not handle payments, communications, or crm - use for marketing only.
SourceWhale public API for managing campaigns, candidates, projects, and statistics. The API exposes 6 endpoints secured with apiKey authentication.
Get dashboard statistics
Patterns agents use SourceWhale API for, with concrete tasks.
★ Marketing Operations
Use the SourceWhale API to perform marketing operations programmatically. The API provides 6 endpoints covering core functionality including list campaigns, add new candidates, modify candidate data.
Call GET /v1/campaigns/list to list campaigns
Automated Campaigns Management
Automate campaigns operations by combining multiple SourceWhale API endpoints. Agents can add new candidates and then modify candidate data in a single workflow.
Call POST /v1/candidates/add to add new candidates, then verify the result
AI Agent Integration via Jentic
AI agents discover and call SourceWhale API endpoints through Jentic without managing credentials directly. An agent searches for the required operation by intent, receives the matching endpoint schema, and executes the call with Jentic-managed authentication. This eliminates the need to read API documentation or handle apiKey tokens manually.
Search Jentic for 'list campaigns', load the operation schema, and execute with Jentic-managed credentials
6 endpoints — sourcewhale public api for managing campaigns, candidates, projects, and statistics.
METHOD
PATH
DESCRIPTION
/v1/campaigns/list
List campaigns
/v1/candidates/add
Add new candidates
/v1/candidates/modify
Modify candidate data
/v1/candidates/search
Search candidates
/v1/projects/list
List projects
/v1/statistics/dashboard
Get dashboard statistics
/v1/campaigns/list
List campaigns
/v1/candidates/add
Add new candidates
/v1/candidates/modify
Modify candidate data
/v1/candidates/search
Search candidates
/v1/projects/list
List projects
What agents get from Jentic-routed access to this vendor.
Setup
Wiring the SourceWhale API by hand means passing its api-key header on every call, pointing at the sourcewhale.app/public-api host, and handling paging and retries across its campaign and candidate calls yourself. Through Jentic you install once, import the SourceWhale API from the API Directory, store the API key once, and your agent calls it.
Permission scoping
The SourceWhale API carries its candidate and campaign targets in the request body and query parameters rather than resource ids in the URL path, so limit the agent to the operations it needs, such as listing campaigns or searching candidates. You choose the operations it may call, so write operations like adding or modifying a candidate are not included unless you add them.
Credential isolation
Your SourceWhale API key is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'list campaigns' or 'search candidates', and Jentic returns the matching SourceWhale API operation with its input schema so the agent calls the right endpoint without browsing the reference docs.
Alternatives and complements available in the Jentic catalogue.
Specific to using SourceWhale API through Jentic.
What authentication does the SourceWhale API use?
The SourceWhale API uses an API key passed in the `api-key` header. Through Jentic, these credentials are stored encrypted in your Jentic One instance and injected at execution time, so raw secrets never enter the agent context.
Can I list campaigns with the SourceWhale API?
Yes. Use the GET /v1/campaigns/list endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the SourceWhale API?
Rate limits are not specified in the OpenAPI spec. Check the vendor documentation for current limits. Through Jentic, rate limiting is handled automatically with retry logic built into the execution layer.
How do I list campaigns through Jentic?
Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'list campaigns'. Jentic returns the matching SourceWhale API operation with its input schema. Load the schema and execute the call - credentials are injected automatically.
How many endpoints does the SourceWhale API have?
The SourceWhale API exposes 6 endpoints covering campaigns, candidates, projects operations.
/v1/statistics/dashboard
Get dashboard statistics