Skip to content
Eden Engine

Bilibili Search Results (by Keyword)

omnial/bilibili-app-fetch-search-all

Given a search keyword, returns a mixed page of Bilibili search results: videos (with title, uploader, view/danmaku counts, and duration), user/channel matches, game listings, and promotional or wiki-style cards, plus a pagination cursor and per-category result counts. A keyword with no real matches still returns a populated page of generic results rather than an empty one, confirmed against a deliberately nonsensical query.

activeper callv1
Provider
Web & Business Data Network
Category
bilibili
Provider price
$0.0020475 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": [
    "keyword"
  ],
  "properties": {
    "order": {
      "type": "integer",
      "default": 0,
      "description": "排序方式/Sort order (0=综合排序)"
    },
    "cursor": {
      "type": "string",
      "description": "Pagination cursor, leave empty for the first page; for the next page pass back data.pagination.next from the previous response"
    },
    "keyword": {
      "type": "string",
      "examples": [
        "原神"
      ],
      "description": "Search keyword"
    },
    "page_size": {
      "type": "integer",
      "default": 20,
      "description": "Page size"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "nav": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "pages": {
                "type": "number"
              },
              "total": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "A decimal-string result count for this category. Absent on some nav entries on both fixtures observed -- treat as unknown, not zero, when missing."
              }
            },
            "additionalProperties": true
          },
          "description": "One entry per result category/tab (e.g. comprehensive, video, user); not every entry carries a `total`, observed only on some tabs on both fixtures."
        },
        "item": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "av": {
                "type": "object",
                "properties": {
                  "mid": {
                    "type": "string",
                    "description": "The uploader's numeric Bilibili member id, as a string."
                  },
                  "face": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The uploader's public avatar image URL. Value withheld (stripped to `null`) in this tool's output."
                  },
                  "play": {
                    "type": "number",
                    "description": "View/play count."
                  },
                  "cover": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The video's cover image URL. Value withheld (stripped to `null`) in this tool's output -- only whether a cover exists is observable, not the image itself."
                  },
                  "ptime": {
                    "type": "string",
                    "description": "Publish time, unix seconds as a string."
                  },
                  "title": {
                    "type": "string",
                    "description": "May contain '<em class=\"keyword\">...</em>' highlight markup around the matched term."
                  },
                  "author": {
                    "type": "string",
                    "description": "The video's own public uploader display name."
                  },
                  "danmaku": {
                    "type": "number",
                    "description": "Bullet-comment count."
                  },
                  "duration": {
                    "type": "string",
                    "description": "e.g. '1:33', 'H:MM:SS' for longer videos."
                  },
                  "view_content": {
                    "type": "string",
                    "description": "A display-formatted play count, sometimes using Chinese numeral abbreviations (e.g. '663万' = 6.63 million) -- duplicates `play` in a locale-specific format."
                  },
                  "show_card_desc_2": {
                    "type": "string",
                    "description": "A short display string, observed as a relative or absolute publish date, e.g. '· 2天前'."
                  }
                },
                "description": "Populated when `goto` is 'av' (a video result).",
                "additionalProperties": true
              },
              "game": {
                "type": "object",
                "properties": {
                  "cover": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The game's cover/icon image URL. Value withheld (stripped to `null`)."
                  },
                  "title": {
                    "type": "string"
                  },
                  "notice": {
                    "type": "string",
                    "description": "Free-text promotional blurb."
                  },
                  "game_tags": {
                    "type": "string",
                    "description": "Free-text promotional tag line."
                  },
                  "game_status": {
                    "type": "string",
                    "description": "A short display label, e.g. '公告' (announcement)."
                  }
                },
                "description": "Populated when `goto` is 'game' (a game listing result).",
                "additionalProperties": true
              },
              "goto": {
                "type": "string",
                "description": "The sub-object key on this item that is populated, e.g. 'av', 'game', 'author_new'."
              },
              "param": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "An opaque id string for this item (e.g. a video's aid, a user's mid, a game's id) -- meaning depends on `linktype`/`goto`."
              },
              "special": {
                "type": "object",
                "properties": {
                  "cover": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The campaign's banner image URL. Value withheld (stripped to `null`)."
                  },
                  "title": {
                    "type": "string"
                  }
                },
                "description": "Populated when `goto` is 'special_s_p' (a promotional/campaign card).",
                "additionalProperties": true
              },
              "linktype": {
                "type": "string",
                "description": "The result's content-type category, e.g. 'video', 'game', 'app_user'."
              },
              "position": {
                "type": [
                  "number",
                  "null"
                ],
                "description": "This item's rank/position in the page. Absent on some entries (ad/cluster cards)."
              },
              "author_new": {
                "type": "object",
                "properties": {
                  "mid": {
                    "type": "string",
                    "description": "The account's numeric Bilibili member id, as a string."
                  },
                  "fans": {
                    "type": "string",
                    "description": "Follower/fan count, as a string."
                  },
                  "cover": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The account's avatar image URL. Value withheld (stripped to `null`)."
                  },
                  "is_up": {
                    "type": "number",
                    "description": "Observed holding the SAME numeric value as the account's own mid rather than a plain boolean on both real accounts calibrated -- treat as an unconfirmed-shape 'is an uploader' signal, not a guaranteed 0/1 flag."
                  },
                  "title": {
                    "type": "string",
                    "description": "The matched account's own public display name/title. May contain '<em class=\"keyword\">...</em>' highlight markup."
                  },
                  "is_live": {
                    "type": "number",
                    "description": "Observed holding a live-room id number (implying the account is currently live) on the one live account calibrated, and absent on non-live accounts -- unconfirmed whether it is ever a plain boolean."
                  }
                },
                "description": "Populated when `goto` is 'author_new' (a user/channel result).",
                "additionalProperties": true
              }
            },
            "additionalProperties": true
          },
          "description": "The mixed-type result list for this page."
        },
        "page": {
          "type": "string",
          "description": "Current page number, as a decimal string (e.g. '1')."
        },
        "keyword": {
          "type": "string",
          "description": "Echoes the input keyword back."
        },
        "pagination": {
          "type": "object",
          "properties": {
            "next": {
              "type": "string",
              "description": "Pass this back as `cursor` on the next call to get the next page."
            }
          },
          "additionalProperties": true
        }
      },
      "additionalProperties": true
    }
  },
  "description": "The search response, as returned at routing.responseResultPath ($.output). `item` is a mixed-type list -- each entry carries only ONE of `av`/`game`/`author_new`/`special` populated, depending on `linktype`, and some entries (ads/cluster cards) carry none of them at all.",
  "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.0020475
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