Get current claim and verification status for a domain.
Parameters
Output
Encoding
application/jsondomain
string
Required
No description available.
kind
string
Optional
No description available.
lastCheckedAt
stringdatetime
Optional
An RFC 3339 formatted timestamp.
lastError
string
Optional
No description available.
siteRkey
stringrecord-key
Optional
A valid record key for AT Protocol repositories.
status
string
Required
No description available.
verified
boolean
Optional
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"domain",
"status"
],
"properties": {
"kind": {
"enum": [
"wisp",
"custom"
],
"type": "string"
},
"domain": {
"type": "string"
},
"status": {
"enum": [
"unclaimed",
"pendingVerification",
"verified",
"alreadyClaimed"
],
"type": "string"
},
"siteRkey": {
"type": "string",
"format": "record-key"
},
"verified": {
"type": "boolean"
},
"lastError": {
"type": "string",
"maxLength": 1000
},
"lastCheckedAt": {
"type": "string",
"format": "datetime"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"domain"
],
"properties": {
"domain": {
"type": "string",
"maxLength": 253,
"minLength": 3,
"description": "Domain to inspect (FQDN, lowercase preferred)."
}
}
},
"description": "Get current claim and verification status for a domain."
}