mailfra
API v1.0

MailFra API Documentation

Complete reference for integrating MailFra's cold email automation platform into your applications

Getting Started with MailFra API

The MailFra API allows you to programmatically manage campaigns, prospects, email sequences, and more. All endpoints are RESTful and return JSON responses.

Base URL

https://mailfra.com/api/v1

Quick Start

1

Generate an API Key

Go to Settings → API Keys to create your key

2

Set Up Your Environment

export MAILFRA_API_KEY=sk_live_YOUR_API_KEY
3

Make Your First Request

const response = await fetch('https://mailfra.com/api/v1/campaigns', {
  headers: {
    'Authorization': 'Bearer sk_live_YOUR_API_KEY'
  }
});

const data = await response.json();

Rate Limits

Rate limits vary by subscription tier. Headers include X-RateLimit-Limit, X-RateLimit-Remaining, and X-RateLimit-Reset. See Authentication section for details.