Import/Export
Backup, migrate, and share your SEO data with powerful import/export tools
Data Portability
Export your SEO data for backups, migrate between sites, or share configurations with team members.
Export Features
Export various types of SEO data and configurations
SEO Settings
- • Global SEO settings
- • Schema configurations
- • Redirect rules
- • Meta templates
Audit Data
- • Site audit results
- • Content decay reports
- • Accessibility scans
- • Performance metrics
Content Data
- • Post/Page SEO data
- • Custom meta fields
- • Focus keywords
- • SEO scores
Historical Data
- • Ranking history
- • Traffic trends
- • Audit history
- • Change logs
How to Export Data
Navigate to Tools
Go to ProRank SEO → Tools → Import/Export in your WordPress admin
Select Export Type
Choose what data you want to export:
Choose Format
Select your preferred export format:
Download Export
Click the Export button to generate and download your data
Import Process
Backup First
Always create a backup before importing data. Imports may overwrite existing settings.
Supported Import Formats
ProRank Export
Native ProRank JSON/ZIP format with full data preservation
Yoast SEO
Import settings and post meta from Yoast exports
RankMath
Compatible with RankMath export files
Import Options
Merge with Existing
Add imported data without removing current settings
Replace All
Remove existing data and replace with imported data
Common Use Cases
Site Migration
Moving your site to a new domain or server
- • Export all SEO settings from old site
- • Import to new site with same structure
- • Preserves redirects and meta data
Team Collaboration
Share configurations across team sites
- • Export proven SEO templates
- • Share with team members
- • Maintain consistency across projects
Regular Backups
Protect your SEO work with scheduled exports
- • Weekly automated exports
- • Version control for settings
- • Quick disaster recovery
Development Workflow
Sync between staging and production
- • Test SEO changes on staging
- • Export successful configurations
- • Import to production safely
Programmatic Access
Use REST API or WP-CLI for automated import/export
REST API Endpoints
# Export data via API
GET /wp-json/prorank/v1/export
?type=settings,audit,content
&format=json
# Import data via API
POST /wp-json/prorank/v1/import
Content-Type: application/json
Body: { ... export data ... }WP-CLI Commands
# Export all SEO data
wp prorank export --type=all --format=json > backup.json
# Export specific data types
wp prorank export --type=settings,audit --format=csv
# Import from file
wp prorank import backup.json --mode=merge
# Import with replacement
wp prorank import backup.json --mode=replace --skip-backupAPI access requires authentication. Use application passwords or OAuth for secure access.