Mr. Mail Tracker API Documentation



Mail Tracking by State

Purpose: Get the tracking results by state for a particular mailing.

Example URL:
https://MrMailTracker.com/api/track_mailing_state?login_id=49&user_id=20&key=GsF6CkPmErRh&mailing_id=55382

Query String Parameters:
user_id
The ID of the user making the request.
login_id
The ID of the user to which the API key was assigned. (Can be the same as the user_id.)
key
The random key used to authenticate the user.
mailing_id
The unique identifier of the mailing you need to retrive tracking results for.

Sample response:

[
    {
        "lat": "32.8067",
        "delivered": 31,
        "lng": "-86.7911",
        "mailed": 31,
        "title": "Alabama"
    }, {
        "lat": "39.0598",
        "delivered": 20,
        "lng": "-105.3111",
        "mailed": 21,
        "title": "Colorado"
    }, {
        "lat": "47.4009",
        "delivered": 19,
        "lng": "-121.4905",
        "mailed": 19,
        "title": "Washington"
    }, {
        "lat": "27.7663",
        "delivered": 28,
        "lng": "-81.6868",
        "mailed": 28,
        "title": "Florida"
    }
]
        

Response information:
The response is an array contianing the delivery statistics for each state that was in the mailing list.
lat
The latitude value of the map coordinates of the state (or a point somewhat near the center of the state).
delivered
Number of pieces confirmed delivered for this state.
lng
The longitude value of the map coordinates of the state (or a point somewhat near the center of the state).
mailed
Number of pieces in this mailing that were sent to this state.
title
The name of the state.