Find the ATProto DIDs (and the at-uris of their keytrace claim records) that have verifiably claimed a given external identity, keyed by claim type and subject. Matching is exact (case-sensitive) on the subject. Only non-retracted claims whose attestation signatures validate against a known keytrace server key are returned.
Parameters
subject
string
Required
The subject identifier being looked up. Matched exactly (case-sensitive). For types whose subject is a shared namespace rather than a personal account (e.g. 'npmorg', where the subject is the scope 'babel'), a single subject may legitimately match several DIDs — one per person who proved publish access.
type
string
Required
The claim type (e.g. 'github', 'dns', 'npm'). Mirrors dev.keytrace.claim#type; keep in sync when adding a new provider.
Output
application/jsonmatches
array
Required
No description available.
total
integer
Required
Total number of matching claims.
Errors
UnknownType
The requested claim type is not supported by this server. Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "UnknownType",
"description": "The requested claim type is not supported by this server."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"total",
"matches"
],
"properties": {
"total": {
"type": "integer",
"minimum": 0,
"description": "Total number of matching claims."
},
"matches": {
"type": "array",
"items": {
"ref": "#match",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"type",
"subject"
],
"properties": {
"type": {
"type": "string",
"description": "The claim type (e.g. 'github', 'dns', 'npm'). Mirrors dev.keytrace.claim#type; keep in sync when adding a new provider.",
"knownValues": [
"github",
"dns",
"activitypub",
"bsky",
"npm",
"npmorg",
"tangled",
"pgp",
"twitter",
"linkedin",
"instagram",
"reddit",
"hackernews",
"orcid",
"itchio",
"discord",
"steam"
]
},
"subject": {
"type": "string",
"description": "The subject identifier being looked up. Matched exactly (case-sensitive). For types whose subject is a shared namespace rather than a personal account (e.g. 'npmorg', where the subject is the scope 'babel'), a single subject may legitimately match several DIDs — one per person who proved publish access."
}
}
},
"description": "Find the ATProto DIDs (and the at-uris of their keytrace claim records) that have verifiably claimed a given external identity, keyed by claim type and subject. Matching is exact (case-sensitive) on the subject. Only non-retracted claims whose attestation signatures validate against a known keytrace server key are returned."
}