Skip to main content
POST
/
v1
/
moz
/
da-pa
/
batch
cURL
curl --request POST \
  --url https://api.nicheok.com/v1/moz/da-pa/batch \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "urls": [
    "https://google.com"
  ]
}
'
{
  "success": true,
  "data": {
    "successUrls": [
      {
        "url": "https://google.com",
        "domainAuthority": 99,
        "pageAuthority": 99,
        "spamScore": 1
      }
    ],
    "failedUrls": [
      {
        "url": "www-random-string-string",
        "reason": "INVALID_URL"
      }
    ]
  },
  "quota": {
    "creditsUsed": 10
  }
}

Authorizations

x-api-key
string
header
required

API Key

Body

application/json
urls
string[]
required
Required array length: 1 - 50 elements

Domain or URL to fetch Moz metrics for

Required string length: 1 - 1000

Response

Moz data

success
boolean
required
Example:

true

data
object
required
quota
object
required