Endpoints
GET /api/emails/scraped_forwarded_emails
Retrieves parsed e-receipt data from forwarded emails matching the specified time filters.
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
web_api_key | string | Yes | Your API token |
ereceipt[from_date] | string | Yes | Start date filter — format YYYY-MM-DD |
ereceipt[to_date] | string | Yes | End date filter — format YYYY-MM-DD |
ereceipt[from_time] | string | Yes | Start time filter — format HH:MM:SS AM/PM |
ereceipt[to_time] | string | Yes | End time filter — format HH:MM:SS AM/PM |
ereceipt[from] | string | No | Start date only (no time) — use with ereceipt[to] for date-only filtering |
ereceipt[to] | string | No | End date only (no time) — use with ereceipt[from] for date-only filtering |
ereceipt[page] | integer | No | Page number. Each page returns 20 items and includes a max_page value. Omit to return the full collection. |
ereceipt[show_html] | boolean | No | When true, includes the raw HTML of the forwarded email in the response |
Example Request
curl "https://licensing.blinkreceipt.com/api/emails/scraped_forwarded_emails?\
web_api_key=YOUR_API_KEY&\
ereceipt[from_date]=2024-01-01&\
ereceipt[to_date]=2024-01-31&\
ereceipt[from_time]=12:00:00 AM&\
ereceipt[to_time]=11:59:59 PM"
GET /api/emails/scraped_forwarded_stats
Retrieves metadata and statistics for forwarded emails matching the specified filters.
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
web_api_key | string | Yes | Your API token |
ereceipt[from_date] | string | Yes | Start date filter — format YYYY-MM-DD |
ereceipt[to_date] | string | Yes | End date filter — format YYYY-MM-DD |
ereceipt[from] | string | No | Start date only (no time) |
ereceipt[to] | string | No | End date only (no time) |
ereceipt[from_time] | string | No | Start time filter — format HH:MM:SS AM/PM |
ereceipt[to_time] | string | No | End time filter — format HH:MM:SS AM/PM |
ereceipt[page] | integer | No | Page number. Each page returns 20 items and includes a max_page value. Omit to return the full collection. |
Example Request
curl "https://licensing.blinkreceipt.com/api/emails/scraped_forwarded_stats?\
web_api_key=YOUR_API_KEY&\
ereceipt[from_date]=2024-01-01&\
ereceipt[to_date]=2024-01-31"