Exporting a single article
Open the article
Navigate to the Articles section of your SEOPilot dashboard and click on the article you want to export.
Choose your format
Pick Export as MDX if you’re publishing to a static site generator, or Export as CSV if you need a spreadsheet-friendly format for bulk imports or CMS ingestion.
MDX export format
The MDX export produces a single.mdx file with a YAML frontmatter block followed by the article body (Markdown). All standard SEO fields are included in the frontmatter so your site generator can read them without any transformation. The hero_image block is only present when the article has a hero image.
article-example.mdx
CSV export format
The CSV export contains one row per article and is suitable for bulk imports into headless CMSes, spreadsheet analysis, or any workflow that prefers tabular data. The file uses standard comma separation with a header row.| Column | Description |
|---|---|
title | Full article title. |
slug | URL-safe slug for routing. |
status | draft or published. |
meta_title | SEO title. |
meta_description | SEO meta description text. |
keyword | Primary target keyword. |
word_count | Word count of the article body. |
generated_at | ISO 8601 timestamp the article was generated. |
updated_at | ISO 8601 timestamp the article was last updated. |
hero_image_url | Hero image URL (blank if none). |
hero_image_alt | Hero image alt text. |
hero_image_photographer | Hero image photographer name. |
hero_image_photographer_url | Hero image photographer profile URL. |
hero_image_source_url | Hero image source page URL. |
body_md | Full article body in Markdown. |
articles-export.csv
Bulk export
You can export all of your articles at once without opening them individually. On the Articles page, click Export all and choose a format:Export all as MDX (.zip)
A
seopilot-articles.zip containing one .mdx file per article (named by slug). Unzip it into your content directory to publish everything at once.Export all as CSV
A single
seopilot-articles.csv with one row per article. Ideal for one-shot imports into a headless CMS or a spreadsheet dashboard.