Skip to content
Eden Engine

Xiaohongshu Note Detail (by Note ID + Share Link Token)

omnial/xiaohongshu-web-fetch-note-detail

Given a Xiaohongshu (Little Red Book) note ID and the one-time xsec_token pulled from that note's own share link, attempts to fetch the note's detail payload. Every real calibration call made while building this tool came back with the upstream's own 'note temporarily unavailable' error instead of note content, because a share token is single-use and expires quickly, and none sourced during testing was still fresh by the time the paid call ran -- a customer's own just-copied share link is expected to return real note data, but that success shape has not itself been observed (see the tool's own notes for why).

activeper callv1
Provider
Web & Business Data Network
Category
xiaohongshu
Provider price
$0.020475 per call
Latency p50 / p95
— / —
Success rate
—
Verified
—

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "note_id",
    "xsec_token"
  ],
  "properties": {
    "note_id": {
      "type": "string",
      "examples": [
        "6a2f423d000000001003cb36"
      ],
      "description": "Note ID"
    },
    "xsec_token": {
      "type": "string",
      "examples": [
        "ABtexB6bX5HgLD42SFrK1scGUmSO8YV5_isaLrDy9sLxQ="
      ],
      "description": "Security token, can be obtained from the sharing link of Xiaohongshu"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "ok": {
      "type": "boolean",
      "description": "Transport-level acknowledgement. Observed `true` on all three real calls."
    },
    "msg": {
      "type": "string",
      "description": "Human-readable status message, in Chinese. The only value observed across all three real calls: 当前笔记暂时无法浏览 (\"this note is temporarily unavailable to view\")."
    },
    "code": {
      "type": "number",
      "description": "Upstream status code. The only value observed across all three real calls is `300031` (note temporarily unavailable -- the share token has expired or was already used)."
    },
    "data": {
      "type": [
        "object",
        "null"
      ],
      "description": "The note detail payload on success, or `null` on error. Observed as `null` on all three real calls made -- the shape of a populated note (caption, images/video, author, engagement counts, etc.) is UNCONFIRMED and not described here; do not assume its fields until a real populated call is captured."
    },
    "success": {
      "type": "boolean",
      "description": "Whether the note detail was actually retrieved. Observed `false` on all three real calls (an expired/consumed share token each time); a `true` success value was never observed."
    }
  },
  "description": "The raw response envelope, as returned at routing.responseResultPath ($.output). Every real calibration call observed the SAME error shape (a stale/expired share token), not a successful note payload -- see the `data` field's own description.",
  "additionalProperties": true
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.020475
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 23, 2026