DinoMatic Docs

Import & Export

Nonaki supports importing and exporting your links in CSV and JSON formats, making it easy to migrate links, create backups, or manage large sets of links outside WordPress.


Go to SettingsImport / Export and click Export CSV or Export JSON to download all your active links, including their tags.


To import links, prepare a file in the correct format (see below) and upload it using the import form in SettingsImport / Export.

Import behaviour:

  • Links with a key that already exists in Nonaki are skipped — existing links are never overwritten
  • Each row is validated individually; invalid rows are skipped
  • Tags are created automatically if they do not already exist

After the import completes, a summary shows how many links were imported and how many were skipped.

Downloading a Template

Click template.json or template.csv to get an example JSON/CSV file with the correct format/column headers ready to fill in.


CSV Format

ColumnRequiredDescription
link_keyYesThe short key used in the redirect URL
destination_urlYesThe full destination URL
redirect_typeNo301, 302, or 307 (defaults to 302)
tagsNoOne or more tag names separated by pipe character - "|"

Example:

link_key,destination_url,redirect_type,tags
dinomatic,https://dinomatic.com/affiliate-program,301,wordpress|web-development
tablrr,https://tablrr.app/the-tablrr-way,302,listings

JSON Format

JSON export produces an array of link objects. The same fields apply.

Example:

[
  {
    "link_key": "dinomatic",
    "destination_url": "https://dinomatic.com/affiliate-program",
    "redirect_type": 301,
    "tags": ["wordpress", "web-development"]
  },
  {
    "link_key": "tablrr",
    "destination_url": "https://tablrr.app/the-tablrr-way",
    "redirect_type": 302,
    "tags": ["listings"]
  }
]

Next step

Settings