Beyond Ipsum

BeyondIpsum is a modern tool designed to generate custom dummy data for your projects, far surpassing traditional Lorem Ipsum text. By sending a JSON request that outlines your desired data structure and the number of records, you receive tailored, realistic data sets perfect for development and testing. This makes BeyondIpsum an essential utility for developers looking to streamline their workflow with accurate and meaningful dummy data.

// Sample JSON Payload

{
  "structure": {
    "name": "Full name of the person",
    "email": "Email address of the person",
    "address": "Address of the person",
    "city": "City of residence",
    "state": "State of residence",
    "zip": "Zip Code of the person"
  },
  "records": 3
}

// Sample Return Data

{
    "generated_data": {
        "data": [
            {
                "name": "John Doe",
                "email": "johndoe@example.com",
                "address": "123 Main St",
                "city": "Anytown",
                "state": "NY",
                "zip": "12345"
            },
            {
                "name": "Jane Smith",
                "email": "janesmith@example.com",
                "address": "456 Elm St",
                "city": "Otherville",
                "state": "CA",
                "zip": "54321"
            },
            {
                "name": "Alice Johnson",
                "email": "alicejohnson@example.com",
                "address": "789 Oak St",
                "city": "Sometown",
                "state": "TX",
                "zip": "67890"
            }
        ]
    },
    "message": ""
}

API Response:

fetch('https://api.beyondipsum.com', {
    method: 'POST',
    headers: {
        'Content-Type': 'application/json',
    },
    body: JSON.stringify({
        "structure": {
            "name": "Full name of the person",
            "email": "Email address of the person",
            "address": "Address of the person",
            "city": "City of residence",
            "state": "State of residence",
            "zip": "Zip Code of the person"
        },
        "records": 3
    })
})
.then(response => response.json())
.then(data => console.log(data));
<?php
// PHP example here
$request_data = array(
    "structure" => array(
        "name" => "Full name of the person",
        "email" => "Email address of the person",
        "address" => "Address of the person",
        "city" => "City of residence",
        "state" => "State of residence",
        "zip" => "Zip Code of the person"
    ),
    "records" => 3
);

$ch = curl_init('https://api.beyondipsum.com');
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($request_data));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
    'Content-Type: application/json',
));

$result = curl_exec($ch);
curl_close($ch);

echo $result;
?>
import requests

# Python example here
request_data = {
    "structure": {
        "name": "Full name of the person",
        "email": "Email address of the person",
        "address": "Address of the person",
        "city": "City of residence",
        "state": "State of residence",
        "zip": "Zip Code of the person"
    },
    "records": 3
}

response = requests.post('https://api.beyondipsum.com', json=request_data)
print(response.json())