Datenexporte

Exportieren Sie Ihre Inhalte, Keywords und Analysedaten aus Rankfender.

Export Options

Rankfender allows you to export your data in multiple formats for backup, analysis, or integration with other tools.

Content Export

Export your generated articles via the API:

GET /v1/projects/:id/content/export?format=json

# Supported formats: json, csv, html, markdown

The export includes:

  • Article title, content (HTML and plain text), and slug
  • SEO metadata (meta title, description, keywords)
  • Featured image URLs
  • Publication status and dates
  • Associated keywords

Keyword Export

GET /v1/projects/:id/keywords/export?format=csv

Includes keyword, volume, position, position change, impressions, clicks, and opportunity score.

AI Visibility Export

GET /v1/projects/:id/ai-visibility/export?format=json

Includes topics, prompts, responses, citation scores, and platform breakdown.

Report Export

Full reports can be exported from the UI or via the API:

  • PDF: Formatted for presentations and sharing
  • CSV: Raw data for spreadsheet analysis
  • JSON: Structured data for programmatic use

Bulk Export

For large datasets, use the async export endpoint:

POST /v1/projects/:id/export
{
  "types": ["content", "keywords", "ai-visibility"],
  "format": "json",
  "date_range": {
    "from": "2024-01-01",
    "to": "2024-12-31"
  }
}

# Returns a download URL when ready