Mayratic
API Reference

Build with the Mayratic API

A simple, RESTful API to integrate Email Finder, Email Verifier, and Outreach Generator directly into your product or workflow.

Authentication

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.

Authorization: Bearer YOUR_API_KEY

Keep your API key secret. Never expose it in client-side code or public repositories.

Endpoints

API Endpoints

POST/api/email-finder

Email Finder

Find the professional email address of a person given their name and company domain.

Parameters

NameTypeRequiredDescription
first_namestringrequiredProspect's first name
last_namestringrequiredProspect's last name
domainstringrequiredCompany 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
}
POST/api/email-verifier

Email Verifier

Verify one or multiple email addresses for deliverability and spam trap status.

Parameters

NameTypeRequiredDescription
emailstringoptionalSingle email to verify
emailsstring[]optionalArray 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 }
  ]
}
POST/api/outreach-generator

Outreach Generator

Generate personalised cold outreach messages for email, LinkedIn, or WhatsApp.

Parameters

NameTypeRequiredDescription
prospect_namestringrequiredFull name of the prospect
companystringrequiredProspect's company name
rolestringrequiredProspect's job title
contextstringrequiredWhat you're offering or why you're reaching out
tonestringoptionalprofessional | casual | bold (default: professional)
channelstringoptionalemail | 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..." }
  ]
}
Limits

Rate Limits

PlanRequests / DayBurst RatePricing
Free100 / day10 / minFree forever
Pro10,000 / day100 / minContact us
EnterpriseUnlimitedCustomCustom

SDKs — Coming Soon

Official JavaScript and Python SDKs are in development. Join the waitlist →

JSPY

Ready to transform your business?

Get started with Mayratic today and unlock the power of AI-driven solutions for your team.

Mayratic

Your one stop shop for intelligent solutions. We build AI-powered tools and platforms that help businesses automate, scale, and grow.

+971 58 256 8057
Al Maskan Building, Office No A39 — Al Karama, Dubai
DiscordTwitterInstagramLinkedInTelegramFacebook

© 2026 Mayratic. All rights reserved.