Data Export
You can download a copy of all your personal data at any time. This is your right of access under data protection law (UK GDPR Article 15) and also serves as a data portability export (Article 20).
What's Included
The export is a single .ndjson file (Newline-Delimited JSON) containing:
- User profile — email, name, dates
- Social accounts — OAuth provider connections
- Group memberships — parties you belong to
- Trips — all your trips with names, dates, and statuses
- Cards — all cards across all trips
- Wishlist items — all pool items across all groups
- Invitations — invitations you've sent
- Share links — public share links you've created
- Support access — support access grants and impersonation sessions
How to Export
- Go to Profile
- Click Export my data
- Your browser will download a file named
lanyard-data-<id>.ndjson
The export is limited to 10 requests per minute.
What the File Looks Like
Each line is a JSON object with a type and data field:
{"type": "user", "data": {"id": 1, "email": "you@example.com", ...}}
{"type": "trip", "data": {"name": "Spring Break 2026", ...}}
{"type": "card", "data": {"title": "Visit Magic Kingdom", ...}}
{"type": "export_meta", "data": {"exported_at": "2026-06-15T12:00:00Z", ...}}
The last line is always an export_meta record showing when the export was generated.
Privacy
This export only contains your personal data — it does not include data belonging to other members of your parties (e.g., their names or accounts).