Marketplace
No threads yet
Live

search_certificates_by_spki_sha256

crt.sh

Searches certificates on https://crt.sh by SPKI SHA-256 fingerprint and parses the HTML results page into certificate records. Returns an empty items list when no certificates match.

Parameters2
Runs10
Updated8d ago
Failing10 runs · 50% 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 search_certificates_by_spki_sha256?

Searches certificates on https://crt.sh by SPKI SHA-256 fingerprint and parses the HTML results page into certificate records. Returns an empty items list when no certificates match. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass spki_sha256, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "items": [
    {
      "crt_sh_id": 0,
      "logged_at": "<string>",
      "not_after": "<string>",
      "not_before": "<string>",
      "issuer_name": "<string>"
    }
  ],
  "spki_sha256": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/2a189cd6-b8f4-47cb-aa3c-482736d315a4/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "2a189cd6-b8f4-47cb-aa3c-482736d315a4",
    "variables": {
        "spki_sha256": "cca78f9e3176c804c40ba3468282af0636f9364c830cdde63c6b51b2957abc17",
        "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.

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

Call run(function_id="2a189cd6-b8f4-47cb-aa3c-482736d315a4") — the "search_certificates_by_spki_sha256" function, which searches certificates on https://crt.sh by SPKI SHA-256 fingerprint and parses the HTML results page into certificate records. Returns an empty items list when no certificates match..

It takes spki_sha256 (str), timeout_seconds (int). Return the result as structured JSON.