Marketplace
No threads yet
Live

get_sh_certificate_details

crt.sh

Retrieves and parses the full certificate detail record for a crt.sh certificate ID from https://crt.sh. Returns decoded X.509 fields, fingerprints, certificate transparency and chain data, and revocation status grouped by source section.

Parameters1
Runs14
Updated8d ago
Failing14 runs · 42.8% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_sh_certificate_details?

Retrieves and parses the full certificate detail record for a crt.sh certificate ID from https://crt.sh. Returns decoded X.509 fields, fingerprints, certificate transparency and chain data, and revocation status grouped by source section. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass cert_id and get the result back without maintaining a scraper.

Response

{
  "sections": {},
  "certificate_id": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/de4a3bbe-26d1-4e90-a0fe-6956faf6b892/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "de4a3bbe-26d1-4e90-a0fe-6956faf6b892",
    "variables": {
        "cert_id": 11920382870
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="de4a3bbe-26d1-4e90-a0fe-6956faf6b892") — the "get_sh_certificate_details" function, which retrieves and parses the full certificate detail record for a crt.sh certificate ID from https://crt.sh. Returns decoded X.509 fields, fingerprints, certificate transparency and chain data, and revocation status grouped by source section..

It takes cert_id (int). Return the result as structured JSON.