Show HN: Mir – 플랫폼 간 이동 가능한 참여 내역(오픈 샌드박스)
hackernews
|
|
🔬 연구
#오픈 샌드박스
#참여 내역
#크로스 플랫폼
#api
#mir
#review
#show hn
#샌드박스
#이동 가능한 데이터
원문 출처: hackernews · Genesis Park에서 요약 및 분석
요약
MIR(Memory Infrastructure Registry)는 플랫폼 간의 직접적인 데이터 교환 없이 사용자의 행동 이력을 안전하게 공유하고 조회할 수 있는 인프라 계층입니다. 파트너가 API를 통해 이벤트를 제출하면, 다른 플랫폼에서 해당 사용자를 조회할 때 참여하는 모든 플랫폼의 집계된 신호를 익명으로 확인할 수 있습니다. 현재 Express, TypeScript, PostgreSQL, Redis 스택을 기반으로 샌드박스가 공개되어 있어, 일일 5천 건의 이벤트 제한 내에서 즉시 API 키를 발급받아 테스트해볼 수 있습니다. 이는 단일 플랫폼의 신뢰도가 다른 곳에서는 반영되지 않는 문제를 해결하여 평판 이력의 이식성을 높이는 것을 목표로 합니다.
본문
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://mir.events/v1/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://mir.events/v1/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.
Genesis Park 편집팀이 AI를 활용하여 작성한 분석입니다. 원문은 출처 링크를 통해 확인할 수 있습니다.
공유