at.upvote.getSignals

upvote.at

Documentation

Get signal records indexed from the network, newest first. Optionally filter to signals from a single account.

main query

Get signal records indexed from the network, newest first. Optionally filter to signals from a single account.

Parameters

cursor string Optional

No description available.

did string did Optional

Filter to signals from this account.

limit integer Optional

No description available.

Output

Encodingapplication/json
cursor string Optional

No description available.

records array 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
Filter to signals from this account.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "records"
      ],
      "properties": {
        "cursor": {
          "type": "string"
        },
        "records": {
          "type": "array",
          "items": {
            "ref": "#signal",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "properties": {
      "did": {
        "type": "string",
        "format": "did",
        "description": "Filter to signals from this account."
      },
      "limit": {
        "type": "integer",
        "default": 20,
        "maximum": 100,
        "minimum": 1
      },
      "cursor": {
        "type": "string"
      }
    }
  },
  "description": "Get signal records indexed from the network, newest first. Optionally filter to signals from a single account."
}
signal object

No description available.

Properties

createdAt string datetime Required

Timestamp of signal creation.

subject string uri Required

The URI this signal upvotes — an at-uri for atmosphere documents, or an http(s) URL for the open web.

uri string at-uri Required

The at-uri of the signal record.

View raw schema
{
  "type": "object",
  "required": [
    "uri",
    "subject",
    "createdAt"
  ],
  "properties": {
    "uri": {
      "type": "string",
      "format": "at-uri",
      "description": "The at-uri of the signal record."
    },
    "subject": {
      "type": "string",
      "format": "uri",
      "description": "The URI this signal upvotes — an at-uri for atmosphere documents, or an http(s) URL for the open web."
    },
    "createdAt": {
      "type": "string",
      "format": "datetime",
      "description": "Timestamp of signal creation."
    }
  }
}

Lexicon Garden

@