bison-api

Documents Bison cold email platform API endpoints, field names, and status values.

Updated Mar 26, 2026
One-click install
npx skills add https://github.com/LGJ-Jonathan/Jonathan_Global_Claude_Skills --skill bison-api-lgj-jonathan
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: bison-api
Source: https://github.com/LGJ-Jonathan/Jonathan_Global_Claude_Skills/tree/main/bison-api
Command: npx skills add https://github.com/LGJ-Jonathan/Jonathan_Global_Claude_Skills --skill bison-api-lgj-jonathan

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Working with the Bison (EmailBison) cold email API requires knowing exact endpoint paths, field names, filter parameters, and status values, which are easy to get wrong without a reference. This Skill provides a compact, accurate API reference so you can build integrations, dashboards, or automations against the Bison platform without guessing request shapes. ## Core Features & Use Cases - Endpoint Reference: Complete tables of endpoints for campaigns, replies, leads, sender emails, warmup, and workspace stats, including required parameters and filters. - Data Shape Documentation: Key JSON response shapes for campaigns, replies, and leads, plus pagination, auth, and rate limit details. - Use Case: You are building a reporting dashboard that pulls campaign performance from Bison. Use this Skill to confirm that campaign stats are inline on the list endpoint, that stats endpoints require start_date and end_date, and that pagination is page-based with 15 items per page. ## Quick Start Ask the AI to show you how to fetch all replies for a specific Bison campaign filtered by interested status using the Bison API reference.

Frequently Asked Questions about bison-api

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I get campaign stats from the Bison API?

Campaign stats are inline on the GET /api/campaigns list endpoint, including emails_sent, opened, replied, bounced, and interested counts. For detailed sequence step stats, POST to /api/campaigns/{id}/stats with start_date and end_date.

How do I authenticate with the EmailBison API?

Authenticate by sending an Authorization header with Bearer followed by your API key. The base URL is https://send.leadgenjay.com and the rate limit is 3000 requests per minute.

Does the Bison API support bulk lead creation?

Yes, POST /api/leads/multiple creates up to 500 leads in one request, and POST /api/leads/bulk/csv accepts CSV uploads. Single lead creation via POST /api/leads requires first_name, last_name, and email.

How does pagination work in the Bison API?

Pagination is page-based using a ?page=1 query parameter, not cursor-based. Each page returns 15 items, and responses are wrapped in a data object.

What are the campaign status values in Bison?

Campaign status values are Active, Draft, Launching, Stopped, Completed, Paused, Failed, Queued, and Archived. Reply interest is represented as a boolean interested field rather than a numeric value.