Skip to content
Eden Engine

Xiaohongshu Topic Feed (Posts by Topic Page)

omnial/xiaohongshu-app-get-topic-feed

Given a Xiaohongshu topic page ID, returns the notes (posts) published under that topic, sorted by trend or by time -- each note's title, caption, author, hashtags, engagement counts (likes, comments, shares, collects), and a pagination cursor for the next page.

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": [
    "page_id"
  ],
  "properties": {
    "sort": {
      "type": "string",
      "default": "trend",
      "examples": [
        "trend"
      ],
      "description": "排序方式/Sort: trend(最热), time(最新)"
    },
    "source": {
      "type": "string",
      "default": "normal",
      "examples": [
        "normal"
      ],
      "description": "Source"
    },
    "page_id": {
      "type": "string",
      "examples": [
        "5c1cc866febed9000184b7c1"
      ],
      "description": "Topic page ID"
    },
    "session_id": {
      "type": "string",
      "description": "Session ID, keep consistent for pagination"
    },
    "cursor_score": {
      "type": "string",
      "description": "Pagination cursor score for next page"
    },
    "last_note_ct": {
      "type": "string",
      "description": "Last note create time from previous page"
    },
    "last_note_id": {
      "type": "string",
      "description": "Last note ID from previous page"
    },
    "first_load_time": {
      "type": "string",
      "description": "First load timestamp, keep consistent for pagination"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "items": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The note's id."
              },
              "ats": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "user_id": {
                      "type": "string"
                    },
                    "nickname": {
                      "type": "string",
                      "description": "The mentioned account's public display name."
                    }
                  },
                  "additionalProperties": true
                },
                "description": "Other public accounts the note mentions/tags. Observed only on some notes (present on the topic-trend-feed fixture, absent on topic-time-feed) -- not every note mentions another user."
              },
              "desc": {
                "type": "string",
                "description": "The note's caption text, including inline hashtags."
              },
              "type": {
                "type": "string",
                "description": "e.g. 'normal' (image note) or 'video'."
              },
              "user": {
                "type": "object",
                "properties": {
                  "user_id": {
                    "type": "string"
                  },
                  "nickname": {
                    "type": "string",
                    "description": "The author's public display name."
                  }
                },
                "description": "The note's author, a public Xiaohongshu account.",
                "additionalProperties": true
              },
              "title": {
                "type": "string"
              },
              "hash_tags": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string"
                    },
                    "name": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string",
                      "description": "e.g. 'topic'."
                    }
                  },
                  "additionalProperties": true
                },
                "description": "The topic tags attached to this note."
              },
              "note_time": {
                "type": "object",
                "properties": {
                  "create_time": {
                    "type": "number",
                    "description": "Unix epoch seconds."
                  },
                  "update_time": {
                    "type": "number",
                    "description": "Unix epoch seconds."
                  }
                },
                "additionalProperties": true
              },
              "share_info": {
                "type": "object",
                "properties": {
                  "title": {
                    "type": "string"
                  },
                  "content": {
                    "type": "string",
                    "description": "The share-card caption text."
                  }
                },
                "additionalProperties": true
              },
              "create_time": {
                "type": "number",
                "description": "Unix epoch milliseconds the note was published."
              },
              "cursor_score": {
                "type": "string",
                "description": "Opaque pagination cursor for this item -- pass as cursor_score on the next call."
              },
              "interaction_info": {
                "type": "object",
                "properties": {
                  "liked": {
                    "type": "boolean",
                    "description": "Whether the calling account has liked this note."
                  },
                  "like_count": {
                    "type": "number"
                  },
                  "share_count": {
                    "type": "number"
                  },
                  "collect_count": {
                    "type": "number"
                  },
                  "comment_count": {
                    "type": "number"
                  }
                },
                "description": "Public engagement counts for this note.",
                "additionalProperties": true
              }
            },
            "additionalProperties": true
          },
          "description": "The notes (posts) published under this topic, in the requested sort order."
        },
        "has_more": {
          "type": "boolean",
          "description": "Whether another page exists; page with data.items[].cursor_score."
        }
      },
      "additionalProperties": true
    },
    "success": {
      "type": "boolean",
      "description": "true on both real fixtures observed."
    }
  },
  "description": "The topic feed, as returned at routing.responseResultPath ($.output).",
  "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 15, 2026