Every directed trust edge in the network (friender → subject), for the explorer's friend graph. A cheap, pure edge list with no handle/avatar hydration.
Parameters
Output
Encoding
application/jsonedges
array
Required
No description available.
total
integer
Required
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": [
"edges",
"total"
],
"properties": {
"edges": {
"type": "array",
"items": {
"type": "object",
"required": [
"friender",
"subject"
],
"properties": {
"subject": {
"type": "string",
"format": "did"
},
"friender": {
"type": "string",
"format": "did"
}
}
}
},
"total": {
"type": "integer"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"default": 5000,
"maximum": 20000,
"minimum": 1
}
}
},
"description": "Every directed trust edge in the network (friender → subject), for the explorer's friend graph. A cheap, pure edge list with no handle/avatar hydration."
}