Developer API Access

Welcome to the EarnMoreCashToday developer portal. We offer a robust REST API that allows approved partners to securely integrate our data directly into their applications, websites, and services.

Secure Integration

Access our data safely with unique, read-only API keys.

Fast & Reliable

Build lightweight, dynamic implementations in real-time.

API Documentation Overview

Once your application is approved and you receive your unique API Key, you can immediately begin querying the ScamSonar database. The API is designed to be lightweight and easy to integrate into any stack.

Authentication

All requests to the ScamSonar API require a valid API key passed via the HTTP Headers. We do not support URL query parameter authentication for security reasons.

Header: X-API-KEY: your_super_secret_key_here

Endpoint

Send a standard GET request to retrieve the latest reported scams from our database. Data is returned in standard JSON format.

GET https://www.earnmorecashtoday.com/wp-json/scamsonar-api/v1/all

Code Examples

cURL

curl -X GET https://www.earnmorecashtoday.com/wp-json/scamsonar-api/v1/all \ -H "X-API-KEY: your_api_key_here"

PHP (cURL)

<?php $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "https://www.earnmorecashtoday.com/wp-json/scamsonar-api/v1/all"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_HTTPHEADER, array( "X-API-KEY: your_api_key_here" )); $response = curl_exec($ch); curl_close($ch); echo $response; ?>

Python (Requests)

import requests url = "https://www.earnmorecashtoday.com/wp-json/scamsonar-api/v1/all" headers = { "X-API-KEY": "your_api_key_here" } response = requests.get(url, headers=headers) print(response.json())

Node.js (Fetch API)

fetch("https://www.earnmorecashtoday.com/wp-json/scamsonar-api/v1/all", { method: "GET", headers: { "X-API-KEY": "your_api_key_here" } }) .then(response => response.json()) .then(data => console.log(data)) .catch(error => console.error("Error:", error));

Example Response

[ { "id": 1402, "title": "Recent Online Scam", "link": "https://www.earnmorecashtoday.com/category/scams/", "date": "2026-02-25T14:30:00", "categories": [ { "id": 3, "name": "Scams", "slug": "scams" } ] } ]