Find a verified personal email from public data
Public GitHub, portfolios, and web search. MX on the domain. A model picks a personal email from that list. Plans from ₹99/month.
# Find from public sources curl -X POST https://api.coderscabana.com/api/v1/find \ -H "Authorization: Bearer pf_live_..." \ -H "Content-Type: application/json" \ -d '{"full_name":"Aakash K","github_url":"https://github.com/aakashk"}' # Response { "primary_email": "aakash@gmail.com", "pick_confidence": "high", "credits_used": 1 }
Product
What the API actually does
Find from public data. Label the source. Pick from the list. No SMTP guessing.
Public sources in parallel
GitHub commits and profiles, portfolios, resumes, then DuckDuckGo when we still need a trail.
MX-checked domains
We look up DNS MX so the domain can accept mail. That is not proof the mailbox exists on SMTP.
Model pick, not invention
The picker chooses a personal email from addresses we actually found. It cannot invent a new one.
REST and MCP
Every plan has the REST find API. Remote MCP (Anthropic Streamable HTTP) is on Scale.
Keys and rate limits
Hashed API keys, one credit per find, and per-key rate limits.
INR pricing
Starter ₹99, Growth ₹399, Scale ₹999. Extra credit packs live in Billing after you have an account. Enterprise is contact us.
How it works
Three steps
Choose a plan
Pay for Starter, Growth, or Scale. Sign in with Google or GitHub. Copy the key once.
Call find
POST https://api.coderscabana.com/api/v1/find with a name and GitHub URL.
Use what was found
Primary email when the picker is confident, plus phones and socials when public sources had them.
Pricing
Three monthly plans in INR
₹99, ₹399, and ₹999 a month. MCP on Scale. Need a custom volume? Contact us. Extra credits are sold in the dashboard after you sign in.
| Feature | Starter ₹99/mo | Growth ₹399/mo | Scale ₹999/mo |
|---|---|---|---|
Credits each month Reset at the end of the billing period | 20 | 80 | 200 |
Requests per minute Per API key | 20 | 60 | 120 |
REST API POST /api/v1/find with your secret key | |||
Customer dashboard Keys, billing, usage, playground | |||
Secure MCP + agent skills Cursor, Claude, and other agents — Scale |
Need Enterprise volume? Contact us
Developers
Developer friendly
Clean REST API. JSON in, JSON out. Works with any language.
# Python import httpx resp = httpx.post( "https://api.coderscabana.com/api/v1/find", headers={"Authorization": "Bearer pf_live_..."}, json={"full_name": "Rahul Sharma", "github_url": "https://github.com/rahulsharma"} ) data = resp.json() print(data["primary_email"])
Questions
Is there a free trial for PersonFinder?
No. There is no free plan or trial. Starter is ₹99 for 20 credits.
Do PersonFinder credits roll over?
Monthly plan credits reset each billing period. After you sign in, extra credit packs are in Dashboard → Billing. Those packs roll over for one year. Credits closest to expiring are spent first.
What payment methods does PersonFinder accept?
Razorpay supports UPI, cards, netbanking, and wallets. All payments are in INR.
Does Scale include MCP?
Yes. Remote MCP (Anthropic Streamable HTTP) is included on Scale. Starter and Growth do not include MCP. Enterprise is a conversation, not checkout.
Where can I see if the API is up?
The public status page is https://coderscabana.com/status. It reports API, find, billing, MCP, and dashboard.