dev.cocore.account.listFriendEdges

cocore.dev

Documentation

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.

main query

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

limit integer Optional

No description available.

Output

Encodingapplication/json
edges 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.

Base URL for XRPC calls (e.g., https://api.bsky.social)
Parameters
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."
}

Lexicon Garden

@