quest.sableye.magnet.listEntries

matt.evil.gay

Documentation

List and search magnet entries.

main query

List and search magnet entries.

Parameters

cursor string Optional

Pagination cursor.

limit integer Optional

Maximum number of results.

q string Optional

Search query (searches name and description).

tag string Optional

Filter by tag.

Output

Encodingapplication/json
cursor string Optional

No description available.

entries 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
Pagination cursor.
Maximum number of results.
Search query (searches name and description).
Filter by tag.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "entries"
      ],
      "properties": {
        "cursor": {
          "type": "string"
        },
        "entries": {
          "type": "array",
          "items": {
            "ref": "#entryView",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "properties": {
      "q": {
        "type": "string",
        "description": "Search query (searches name and description)."
      },
      "tag": {
        "type": "string",
        "description": "Filter by tag."
      },
      "limit": {
        "type": "integer",
        "default": 25,
        "maximum": 100,
        "minimum": 1,
        "description": "Maximum number of results."
      },
      "cursor": {
        "type": "string",
        "description": "Pagination cursor."
      }
    }
  },
  "description": "List and search magnet entries."
}
entryView object

No description available.

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

description string Optional

No description available.

did string did Required

A decentralized identifier (DID).

fileCount integer Optional

No description available.

indexedAt string datetime Required

An RFC 3339 formatted timestamp.

infoHash string Optional

No description available.

magnetUri string Required

No description available.

name string Required

No description available.

rkey string Required

No description available.

sizeBytes integer Optional

No description available.

tags array of string Optional

No description available.

torrentFile blob Optional

Optional .torrent file on the author's PDS (same shape as record field).

uri string at-uri Required

An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).

View raw schema
{
  "type": "object",
  "required": [
    "uri",
    "did",
    "rkey",
    "magnetUri",
    "name",
    "createdAt",
    "indexedAt"
  ],
  "properties": {
    "did": {
      "type": "string",
      "format": "did"
    },
    "uri": {
      "type": "string",
      "format": "at-uri"
    },
    "name": {
      "type": "string"
    },
    "rkey": {
      "type": "string"
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "infoHash": {
      "type": "string"
    },
    "createdAt": {
      "type": "string",
      "format": "datetime"
    },
    "fileCount": {
      "type": "integer"
    },
    "indexedAt": {
      "type": "string",
      "format": "datetime"
    },
    "magnetUri": {
      "type": "string"
    },
    "sizeBytes": {
      "type": "integer"
    },
    "description": {
      "type": "string"
    },
    "torrentFile": {
      "type": "blob",
      "description": "Optional .torrent file on the author's PDS (same shape as record field)."
    }
  }
}

Lexicon Garden

@