Build with the Mayratic API
A simple, RESTful API to integrate Email Finder, Email Verifier, and Outreach Generator directly into your product or workflow.
API Keys
All API requests must include your API key as a Bearer token in the Authorization header. You can obtain your key by contacting our team or upgrading to a Pro plan.
Keep your API key secret. Never expose it in client-side code or public repositories.
API Endpoints
/api/email-finderEmail Finder
Find the professional email address of a person given their name and company domain.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| first_name | string | required | Prospect's first name |
| last_name | string | required | Prospect's last name |
| domain | string | required | Company domain, e.g. acme.com |
Example Request
curl -X POST https://mayratic.com/api/email-finder \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"first_name":"John","last_name":"Smith","domain":"acme.com"}'Example Response
{
"email": "john.smith@acme.com",
"confidence": 94,
"status": "verified",
"sources": 7
}/api/email-verifierEmail Verifier
Verify one or multiple email addresses for deliverability and spam trap status.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| string | optional | Single email to verify | |
| emails | string[] | optional | Array of emails for bulk verification (max 50) |
Example Request
curl -X POST https://mayratic.com/api/email-verifier \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"emails":["john@acme.com","jane@corp.io"]}'Example Response
{
"results": [
{ "email": "john@acme.com", "status": "valid", "score": 98 },
{ "email": "jane@corp.io", "status": "risky", "score": 61 }
]
}/api/outreach-generatorOutreach Generator
Generate personalised cold outreach messages for email, LinkedIn, or WhatsApp.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| prospect_name | string | required | Full name of the prospect |
| company | string | required | Prospect's company name |
| role | string | required | Prospect's job title |
| context | string | required | What you're offering or why you're reaching out |
| tone | string | optional | professional | casual | bold (default: professional) |
| channel | string | optional | email | linkedin | whatsapp (default: email) |
Example Request
curl -X POST https://mayratic.com/api/outreach-generator \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"prospect_name":"Jane Doe","company":"Acme","role":"VP Sales","context":"AI SDR tool","tone":"professional","channel":"email"}'Example Response
{
"variants": [
{ "subject": "Quick question, Jane", "body": "Hi Jane, I noticed Acme..." },
{ "subject": "Idea for your sales team", "body": "Jane, most VP Sales I speak with..." },
{ "subject": "3× more pipeline — worth a look?", "body": "Hi Jane — straight to it..." }
]
}Rate Limits
| Plan | Requests / Day | Burst Rate | Pricing |
|---|---|---|---|
| Free | 100 / day | 10 / min | Free forever |
| Pro | 10,000 / day | 100 / min | Contact us |
| Enterprise | Unlimited | Custom | Custom |
SDKs — Coming Soon
Official JavaScript and Python SDKs are in development. Join the waitlist →
Ready to transform your business?
Get started with Mayratic today and unlock the power of AI-driven solutions for your team.

Your one stop shop for intelligent solutions. We build AI-powered tools and platforms that help businesses automate, scale, and grow.
Products
© 2026 Mayratic. All rights reserved.