Search

The MerkleMap search endpoint allows you to search for subdomains and SSL / TLS certificates.

Endpoint

https://api.merklemap.com/search

Query Parameters

  • Name
    query
    Type
    string
    Description

    The search query (e.g., example.com).

  • Name
    page
    Type
    integer
    Description

    The page number for paginated results. Starts at 0.

  • Name
    stream_progress
    Type
    boolean
    Description

    Set to true to get the search progress in the response stream.

  • Name
    stream
    Type
    boolean
    Description

    Set to true to get the search results in the response stream. Pagination is ignored in this mode.

Response Format

The response is returned as a JSON object.

Request

GET
/search
curl -N -G https://api.merklemap.com/search \
-d query=example.com \
-d page=0

JSON Response

{
    "count": 9588,
    "results": [
{
    "domain": "3.example.com",
    "subject_common_name": "1.example.com",
    "not_before": 1726168444
},
{
    "domain": "www.2.example.com",
    "subject_common_name": "www.2.example.com",
    "not_before": 1726130923
},
    ...
 ]
}

Was this page helpful?