Experience cross-system participation history. Sign in, get a sandbox API key, submit events, resolve identities — see what happens when multiple participants share the same history layer.
Enter your email to get a magic link. No password needed.
Record participation events for any user identity. Use your sandbox key in the x-api-key header.
# Submit an event
curl -X POST https://myinternetreputation.org/events \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_SANDBOX_KEY" \
-d '{
"userExternalId": "user-123",
"eventType": "transaction.completed"
}'
Use any of: transaction.completed, transaction.fulfilled, account.created, account.verified, review.submitted, rating.received
Use the same userExternalId that another sandbox participant uses. When you both submit events for the same user, that user builds cross-system participation history — visible to both of you on resolve.
Query participation history for any user. See events from all sandbox participants, not just your own.
# Resolve a user's participation history
curl https://myinternetreputation.org/sandbox/resolve?userExternalId=user-123 \
-H "x-api-key: YOUR_SANDBOX_KEY"
The resolve response shows events from all sandbox participants who submitted events for that user — not just yours. Partner names are anonymized. This is cross-system participation history.
Recent sandbox activity across all participants.