at.marque.dns.getDsRecords

marque.at

Documentation

Fetch the DNSSEC DS (Delegation Signer) records for a domain to publish to the parent registrar.

main query

Fetch the DNSSEC DS (Delegation Signer) records for a domain to publish to the parent registrar.

Parameters

domain string Required

The fully qualified domain name.

Output

Encodingapplication/json
domain string Required

No description available.

ds array Required

No description available.

Errors

NotFound The specified domain was not found or has no DNSSEC keys.
Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://api.bsky.social)
Parameters
The fully qualified domain name.
View raw schema
{
  "type": "query",
  "errors": [
    {
      "name": "NotFound",
      "description": "The specified domain was not found or has no DNSSEC keys."
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "domain",
        "ds"
      ],
      "properties": {
        "ds": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "digest": {
                "type": "string"
              },
              "keyTag": {
                "type": "integer"
              },
              "algorithm": {
                "type": "integer"
              },
              "digestType": {
                "type": "integer"
              }
            }
          }
        },
        "domain": {
          "type": "string"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "domain"
    ],
    "properties": {
      "domain": {
        "type": "string",
        "maxLength": 253,
        "description": "The fully qualified domain name."
      }
    }
  },
  "description": "Fetch the DNSSEC DS (Delegation Signer) records for a domain to publish to the parent registrar."
}

Lexicon Garden

@