Well-Known URI Prober - Scan /.well-known/ Endpoints API avatar

Well-Known URI Prober - Scan /.well-known/ Endpoints API

Pricing

$10.00 / 1,000 domain checkeds

Go to Apify Store
Well-Known URI Prober - Scan /.well-known/ Endpoints API

Well-Known URI Prober - Scan /.well-known/ Endpoints API

Probe a domain's /.well-known/ endpoints. Input: domain. Output: JSON per endpoint (security.txt, change-password, mta-sts, openid-configuration, apple-app-site-association, assetlinks, dnt-policy) with URL, status, and found flag. $0.01 per domain checked.

Pricing

$10.00 / 1,000 domain checkeds

Rating

0.0

(0)

Developer

Anthony Snider

Anthony Snider

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

11 days ago

Last modified

Share

Well-Known URI Prober

Probe any domain's standard /.well-known/ endpoints in one shot — discover which the site actually serves, with status, content-type and size, plus parsed security.txt and OpenID configuration.

Live on the Apify Store — run it instantly or call it as an agent tool via Apify MCP.

What you get

  • 17 curated /.well-known/ endpoints probed per domain — security.txt, change-password, mta-sts.txt, openid-configuration, oauth-authorization-server, apple-app-site-association, assetlinks.json, dnt-policy.txt, gpc.json, host-meta, webfinger, nodeinfo, Matrix server/client, ai.txt, CardDAV/CalDAV.
  • found vs missing — exactly which endpoints exist (2xx), each with status, contentType, size and finalUrl.
  • Parsed security.txt (RFC 9116) — contact, expires, encryption, policy, canonical, preferred languages, and whether it is PGP-signed.
  • Parsed openid-configuration — issuer, authorization/token/userinfo endpoints, JWKS URI, supported scopes and grant types.
  • Single or bulk — pass one domain or many domains, capped by maxDomains.

Input

{
"domain": "github.com",
"domains": ["google.com"],
"maxDomains": 25
}

Output

{
"domain": "github.com",
"checkedAt": "2026-06-24T00:00:00.000Z",
"foundCount": 3,
"found": [
{ "path": "/.well-known/security.txt", "status": 200, "contentType": "text/plain; charset=utf-8", "size": 540, "finalUrl": "https://github.com/.well-known/security.txt" },
{ "path": "/.well-known/change-password", "status": 200, "contentType": "text/html; charset=utf-8", "size": 12345, "finalUrl": "https://github.com/.well-known/change-password" }
],
"missing": ["/.well-known/mta-sts.txt", "/.well-known/openid-configuration"],
"securityTxt": {
"contact": ["https://hackerone.com/github"],
"expires": "2026-12-31T00:00:00.000Z",
"encryption": [],
"canonical": ["https://github.com/.well-known/security.txt"],
"policy": ["https://github.com/security"],
"preferredLanguages": "en",
"signed": false
},
"openidConfiguration": null
}