Bulk Import External Backlinks

Enter JSON data as an array of backlink objects. Each object must have at least backlink, anchor, and url fields.

Import Instructions

Required Fields

  • backlink - Source URL where the backlink is located
  • anchor - Anchor text of the backlink
  • url - Target URL that the backlink points to

Optional Fields

  • website_id - UUID of the associated website
  • hostname - Hostname (auto-extracted if not provided)
  • domain_rating - Ahrefs Domain Rating (0-100)
  • referring_domains - Number of referring domains
  • backlinks - Total number of backlinks
  • price - Cost of the backlink
  • currency - Currency code (USD, EUR, etc.)
  • duration - Campaign duration in days
  • start_date - Campaign start date (YYYY-MM-DD)
  • end_date - Campaign end date (YYYY-MM-DD)
  • permanent - Whether the backlink is permanent (true/false)
  • self_created - Whether the backlink is self-created (true/false)
  • indexed - Whether the backlink is indexed (true/false)
  • rel_attribute - Rel attribute (nofollow, etc.)
  • notes - Additional notes

Contact Information

For contact information, use nested objects in JSON or separate columns in CSV:

  • contact.name - Contact person name
  • contact.email - Contact email
  • contact.phone - Contact phone
  • contact.company - Company name

Sample Data

JSON Sample

[
  {
    "backlink": "https://example.com/page1",
    "anchor": "Click here to learn more",
    "url": "https://yoursite.com/page1",
    "domain_rating": 50,
    "price": 100,
    "currency": "USD",
    "permanent": true,
    "contact": {
      "name": "John Doe",
      "email": "john@example.com"
    }
  }
]

CSV Sample

backlink,anchor,url,domain_rating,price,currency,permanent
https://example.com/page1,"Click here to learn more",https://yoursite.com/page1,50,100,USD,true