Mangools/API

Get list of all exports, sorted by created_at

Get all full backlink CSV exports you have created, sorted by creation date (newest first). Each entry describes the target URL, the filters that were applied, the cost and the processing state. Once an export is ready, a downloadURL pointing to the generated CSV is included. Exports older than 60 days are archived and no longer available for download.

GET
/linkminer/exports

Authorization

ApiKeyAuth
x-access-token<token>

API token issued for your Mangools account, sent as an API key in the x-access-token HTTP header. This is NOT a standard RFC 6750 Authorization: Bearer <token> header. Auto-generated clients should be configured to send the token in x-access-token accordingly.

In: header

Response Body

application/json

application/json

curl -X GET "https://api.mangools.com/v3/linkminer/exports"
[
  {
    "owner": "string",
    "_id": "5f8d0d55b54764421b7156c3",
    "jobName": "string",
    "state": 600,
    "email": "string",
    "error": "string",
    "request": {
      "url": "mangools.com",
      "type": "RootDomain",
      "limit": 50000,
      "filter": {
        "targetAnchorText": "string",
        "targetHrefText": "string",
        "linkType": "string",
        "noFollow": true,
        "liveLinks": true,
        "minCitationFlow": 0,
        "maxCitationFlow": 0,
        "minTrustFlow": 0,
        "maxTrustFlow": 0,
        "minTopRank": 0,
        "maxTopRank": 0,
        "minLinkStrength": 0,
        "maxLinkStrength": 0,
        "flagTextLink": true,
        "flagImageLink": true,
        "flagFrameLink": true,
        "flagRedirectLink": true,
        "flagMentionLink": true,
        "linksPerDomain": 1
      }
    },
    "stats": {
      "fresh": 0,
      "historic": 0,
      "duplicates": 0,
      "filtered": 0,
      "topRank": {
        "requests": 0,
        "rpcCalls": 0,
        "rpcGoodResult": 0,
        "goodResult": 0,
        "successRate": 0
      },
      "fb": {
        "requests": 0,
        "rpcCalls": 0,
        "rpcGoodResult": 0,
        "goodResult": 0,
        "successRate": 0
      }
    },
    "backLinks": 0,
    "cost": 0,
    "costPrediction": 0,
    "createdAt": 0,
    "completedAt": 0,
    "downloadURL": "https://s3.amazonaws.com/mangools-lm-export/56cac3c2-2880-41a2-9f6d-a5d86364df6c/example.com.csv"
  }
]
{
  "error": {
    "type": "AuthError",
    "message": "Invalid API Key"
  }
}