Webhook-style event payloads: user.created, payment.succeeded, file.uploaded, and more. Free to use, no attribution required — copy it, download it, or open it directly in the JSON Formatter. Runs entirely in your browser.
[
{
"id": "evt_001",
"type": "user.created",
"userId": "usr_abc123",
"timestamp": "2024-01-10T08:00:00Z",
"data": {
"email": "alice@example.com",
"plan": "free"
}
},
{
"id": "evt_002",
"type": "user.updated",
"userId": "usr_abc123",
"timestamp": "2024-01-11T10:30:00Z",
"data": {
"field": "displayName",
"oldValue": null,
"newValue": "Alice Dev"
}
},
{
"id": "evt_003",
"type": "subscription.created",
"userId": "usr_abc123",
"timestamp": "2024-01-12T14:00:00Z",
"data": {
"plan": "pro",
"billingCycle": "monthly",
"amount": 12.99
}
},
{
"id": "evt_004",
"type": "page.viewed",
"userId": "usr_def456",
"timestamp": "2024-01-13T09:15:00Z",
"data": {
"path": "/dashboard",
"referrer": "https://google.com",
"sessionId": "ses_xyz789"
}
},
{
"id": "evt_005",
"type": "feature.used",
"userId": "usr_def456",
"timestamp": "2024-01-13T09:17:00Z",
"data": {
"feature": "export_csv",
"duration_ms": 342
}
},
{
"id": "evt_006",
"type": "payment.succeeded",
"userId": "usr_abc123",
"timestamp": "2024-01-14T00:01:00Z",
"data": {
"amount": 12.99,
"currency": "USD",
"invoiceId": "inv_0001"
}
},
{
"id": "evt_007",
"type": "error.occurred",
"userId": "usr_ghi789",
"timestamp": "2024-01-14T11:22:00Z",
"data": {
"code": "VALIDATION_ERROR",
"message": "Email is invalid",
"path": "/api/signup"
}
},
{
"id": "evt_008",
"type": "user.login",
"userId": "usr_abc123",
"timestamp": "2024-01-15T08:00:00Z",
"data": {
"method": "oauth",
"provider": "google",
"ip": "192.168.1.1"
}
},
{
"id": "evt_009",
"type": "file.uploaded",
"userId": "usr_def456",
"timestamp": "2024-01-15T14:30:00Z",
"data": {
"filename": "report_q4.pdf",
"sizeBytes": 204800,
"mimeType": "application/pdf"
}
},
{
"id": "evt_010",
"type": "user.deleted",
"userId": "usr_ghi789",
"timestamp": "2024-01-16T16:00:00Z",
"data": {
"reason": "user_request",
"dataRetained": false
}
}
]