Move your changelog posts, NPS surveys, and subscriber list from Beamer to ShipPulse — and unlock testimonials, feedback boards, and status pages at no extra cost.
You can recreate entries manually in the dashboard, or bulk-import via the API. For each Beamer post:
curl -X POST https://shippulse.dev/api/v1/changelog \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"title": "Your post title",
"slug": "your-post-slug",
"type": "feature",
"body": "<p>Post content here</p>",
"published": true
}'Type mapping: Beamer's New → feature, Improvement → improvement, Fix → fix.
<!-- Replace your Beamer script with: -->
<script src="https://cdn.shippulse.dev/widget.js"
data-project="YOUR_PROJECT_TOKEN"
data-widget="changelog-badge">
</script>Export subscribers from Beamer (Settings → Subscribers → Export CSV). Then import via the API:
# For each email in subscribers.csv:
curl -X POST https://shippulse.dev/api/v1/subscribers \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"email": "[email protected]", "topics": ["changelog"]}'Subscribers will receive email digests of new changelog entries automatically — no extra configuration needed.
Free migration assistance
Email [email protected] with your Beamer export and we'll import everything for you — free for annual subscribers.