apyhub
MARKETING · SEO

Domain Authority Checker API

What it does

Domain Authority Metrics lets you look up authority-style metrics for a domain name. Send a domain string and get back whether a match was found, the original query, and a result object when the domain exists in the source data.

The returned result includes the entity type and entity name, the canonical domain, the source_graph it came from, and several scoring fields: pr_pos, pr_val, pr_score_10, pr_score_10_bucket, harmonic_val, and authority_weight. If the lookup does not find a match, found is false and result is null.

Use Domain Authority Metrics when you need a quick signal for SEO analysis, competitive research, or domain ranking workflows. For example, you can enrich a list of domains before prioritising outreach, building backlink reports, or comparing site authority across a market segment.

The response is simple to consume in downstream automation: check found, read the returned query, and use the metric fields in your scoring or reporting logic.

GET
Lookup domain authority metrics
http://localhost:8080/dosvak/lookup-domain-authority-metrics
QUICKSTARTGUIDE

Quickstart

Look up domain authority metrics for a domain name.

curl -X GET "http://localhost:8080/dosvak/lookup-domain-authority-metrics?domain=example.com" \
  -H "apy-token: $APY_TOKEN"

What you'll get back

Returns a JSON object with query as a string and found as a boolean. When found is true, the object may also include result, which is either null or an object containing the authority metrics fields shown below.

{
  "query": "example.com",
  "found": true,
  "result": {
    "entity_type": "domain",
    "entity": "example.com",
    "domain": "example.com",
    "source_graph": "web",
    "pr_pos": 1,
    "pr_val": 0.42,
    "pr_score_10": 7.1,
    "pr_score_10_bucket": 7,
    "harmonic_val": 0.38,
    "authority_weight": 0.81
  }
}
TRY ITLIVE · 10 ATOMS
Loading your default key…
The full key is used to call the gateway and stays in this tab — never sent to orbit or saved.

About this endpoint

What it does

Looks up domain authority metrics for the domain you provide in the query string and returns whether a result was found. When a result is available, the response includes the queried domain, the original query string, and a metrics object.

Query Parameter(s)

AttributeTypeMandatoryDescription
domainStringYesDomain to look up. Minimum length: 1.

Response

Returns a JSON object with query as a string, found as a boolean, and result as a nullable object. query is required in the response schema, and found indicates whether metrics were found; result is present when available and contains the authority-metrics fields declared in the schema.

ParameterTypeMandatoryDescription
queryStringYesThe query string used for the lookup.
foundBooleanYesIndicates whether a result was found.
resultObjectNoMetrics object returned when available. Contains entity_type, entity, domain, source_graph, pr_pos, pr_val, pr_score_10, pr_score_10_bucket, harmonic_val, and authority_weight. host is also defined and may be null.

Query parameters

Name
Type
Description
domainREQUIRED
string

Headers

Name
Type
Description
x-rapidapi-proxy-secretOPTIONAL
string
▣ COMMON ERRORS

Errors any endpoint can return

400bad_request

Required parameter missing or malformed body.

401unauthorized

API key missing, revoked, or not authorized for this service.

429rate_limited

Your plan's per-second rate exceeded. Retry with exponential backoff.

503upstream_busy

Backend temporarily unavailable. Try again in a few seconds.