Docs/Guides/Migrating from Other Tools
Guides

Migrating from Other Tools

Guide to migrating from other preview and collaboration tools.

2 min read

Migrating from Other Tools

Switch to Inpera from other tools with minimal friction.

From Marvel/InVision

Export Comments

  1. Export comments from your current tool
  2. Use our import API:
POST /v1/projects/{projectId}/import/comments
Content-Type: application/json

{
  "source": "invision",
  "comments": [...]
}

Migrate Screens

  1. Export screen images
  2. Create project in Inpera
  3. Set up your live preview URL
  4. Re-create annotations

From Figma Prototypes

Inpera complements Figma rather than replacing it:

  1. Use Figma for design
  2. Use Inpera for live site review
  3. Link Figma designs in comments

From BrowserStack/LambdaTest

For visual testing migration:

  1. Use Inpera's snapshot API
  2. Integrate with your CI/CD
  3. Compare snapshots automatically
# GitHub Actions
- name: Capture Snapshot
  run: |
    curl -X POST https://api.inpera.app/v1/snapshots \
      -H "Authorization: Bearer $INPERA_KEY" \
      -d '{"projectId": "...", "url": "$DEPLOY_URL"}'

Data Import

Bulk Import Projects

POST /v1/import/projects
Content-Type: application/json

{
  "projects": [
    { "name": "Site A", "url": "https://..." },
    { "name": "Site B", "url": "https://..." }
  ]
}

Import Team Members

POST /v1/import/members
Content-Type: application/json

{
  "members": [
    { "email": "...", "role": "editor" }
  ]
}

Migration Support

Need help migrating?

  • Free: Self-service with docs
  • Pro+: Email support
  • Business+: Migration specialist
  • Enterprise: White-glove migration

Contact [email protected]