WebCull
cli

Lecturas De Marcadores

Use count, tree, and get commands to inspect bookmark placement and fetch exact records.

Inspeccionar Ubicacion Antes De Obtener Detalles

Bookmark read commands are designed for large accounts. Start with counts and shallow trees, collect likely IDs, then fetch only the records that matter.

Comprobar Que Tan Grande Es Una Carpeta

webcull bookmarks count --path "/Marketing/Competitors"
{
  "success": "true",
  "count": 84,
  "parent_id": 2301
}

Use the count before tree expansion. If the count is large, lower --limit, lower --max-depth, or choose a narrower path.

Listar Un Arbol De Carpetas Limitado

webcull bookmarks tree --path "/Marketing" --max-depth 1 --limit 25 --fields id,parent_id,type,title,url
{
  "success": "true",
  "items": [
    {
      "id": 2301,
      "parent_id": 2000,
      "type": "folder",
      "title": "Competitors",
      "url": ""
    },
    {
      "id": 2302,
      "parent_id": 2301,
      "type": "bookmark",
      "title": "Acme pricing",
      "url": "https://acme.example/pricing"
    }
  ],
  "returned": 2,
  "parent_id": 2000,
  "max_depth": 1,
  "page": 1
}
id
El ID del marcador o carpeta que se pasará a comandos posteriores get o graph.
parent_id
La carpeta o elemento padre que contiene este resultado.
returned
Cuántas filas se incluyeron después de aplicar sus límites.

Obtener Marcadores Exactos Por ID

webcull bookmarks get --ids 2302,2303 --fields id,title,url,notes --max-metadata-chars 1200
{
  "success": "true",
  "items": [
    {
      "id": 2302,
      "title": "Acme pricing",
      "url": "https://acme.example/pricing",
      "notes": "Compare packaging changes before Q3 planning."
    }
  ],
  "returned": 1
}

Obtenga notas y detalles más largos de marcadores solo después de reducir a un conjunto pequeño de ID. Esto mantiene legible la salida de terminal y facilita su revisión.

Siguiente paso cli Búsqueda Busque detalles de marcadores guardados con términos, filtros, agrupación y límites claros de resultados.