Mangools/API

Get url-metrics for url

Get SEO metrics for a specific URL — MOZ Domain Authority and Page Authority, plus Majestic Citation Flow and Trust Flow. Useful for enriching competitor URLs without running a full SERP lookup.

Limits

Counts toward your Keyword lookups limit. Identical requests within 24 hours are reused from cache.

GET
/serpchecker/url-metrics

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

Query Parameters

url*string

Target URL

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://api.mangools.com/v3/serpchecker/url-metrics?url=string"
{
  "_id": "6be984976f0eedca1741745c5e5290c0",
  "url": "https://example.com/",
  "domain": "example.com",
  "m": {
    "fb": {
      "v": {
        "l": 0,
        "og": {
          "description": "string",
          "title": "string",
          "image": "string"
        }
      },
      "ts": 1617190715
    },
    "moz": {
      "v": {
        "pda": 60,
        "upa": 61,
        "property1": 0,
        "property2": 0
      },
      "ts": 1617190715
    },
    "majestic": {
      "v": {
        "Status": "Found",
        "ExtBackLinks": 376507,
        "RefDomains": 3800,
        "AnalysisResUnitsCost": 376507,
        "ACRank": 8,
        "RefIPs": 3475,
        "ItemType": 3,
        "RefSubNets": 2503,
        "CitationFlow": 53,
        "TrustFlow": 63,
        "TrustMetric": 63,
        "IndexedURLs": 1,
        "NonUniqueLinkTypeHomepages": "263",
        "NonUniqueLinkTypeIndirect": "5",
        "NonUniqueLinkTypeDeleted": "2013",
        "NonUniqueLinkTypeNoFollow": "5358",
        "NonUniqueLinkTypeProtocolHTTPS": "377230",
        "NonUniqueLinkTypeFrame": "2",
        "NonUniqueLinkTypeImageLink": "1140",
        "NonUniqueLinkTypeRedirect": "51",
        "NonUniqueLinkTypeTextLink": "377682",
        "TotalNonUniqueLinks": "378875",
        "OutLinksInternal": "21",
        "OutLinksExternal": "11",
        "OutDomainsExternal": "8",
        "RefDomainsEDU": 9,
        "ExtBackLinksEDU": 10,
        "RefDomainsGOV": 0,
        "ExtBackLinksGOV": 0,
        "RefDomainsEDU_Exact": 4,
        "ExtBackLinksEDU_Exact": 5,
        "RefDomainsGOV_Exact": 0,
        "ExtBackLinksGOV_Exact": 0
      },
      "ts": 1617190715
    },
    "rank": {
      "v": {
        "r": 42
      },
      "ts": 1537866000
    }
  },
  "topRank": 0
}
{
  "error": {
    "type": "AuthError",
    "message": "Invalid API Key"
  }
}
{
  "error": {
    "type": "InvalidInput",
    "message": "Parameter url is invalid"
  }
}
{
  "error": {
    "type": "RateLimit",
    "message": "Not enough limits 2"
  }
}