get_certificate_authority_details
crt.shRetrieves certificate authority details from https://crt.sh by CA ID. Returns the CA name, raw certificate key information, and related certificate records parsed from the CA details page.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_certificate_authority_details?
Retrieves certificate authority details from https://crt.sh by CA ID. Returns the CA name, raw certificate key information, and related certificate records parsed from the CA details page. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass ca_id, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"ca_id": 0,
"ca_name": "<string>",
"child_cas": [
"<string>"
],
"parent_cas": [
"<string>"
],
"certificates": [
{
"crt_sh_id": 0,
"not_after": "<string>",
"not_before": "<string>",
"issuer_name": "<string>"
}
],
"raw_certificate_information": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/8b661873-bc8b-45de-ac89-467a9af25075/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "8b661873-bc8b-45de-ac89-467a9af25075",
"variables": {
"ca_id": 185752,
"timeout_seconds": 120
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="8b661873-bc8b-45de-ac89-467a9af25075") — the "get_certificate_authority_details" function, which retrieves certificate authority details from https://crt.sh by CA ID. Returns the CA name, raw certificate key information, and related certificate records parsed from the CA details page.. It takes ca_id (int), timeout_seconds (int). Return the result as structured JSON.