> ## Documentation Index
> Fetch the complete documentation index at: https://aisa.one/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Tag feed

> Tag feed

Tag feed

**Pricing** — base \$0.00145 per successful call (provider cost × 1.45; final charge scales by your plan multiplier). Charged only when the upstream response body `code` is `200`.

<Note>
  Response structure is not yet fully documented — **refer to the actual API response**.
</Note>

## Example

```bash theme={null}
curl "https://api.aisa.one/apis/v1/tikhub/kuaishou/app/fetch_tag_feed?general_tag_id=portrait" \
  -H "Authorization: Bearer YOUR_API_KEY"
```


## OpenAPI

````yaml openapi/tikhub-en.json GET /tikhub/kuaishou/app/fetch_tag_feed
openapi: 3.0.0
info:
  title: TikHub API
  description: >-
    Multi-platform social media data via TikHub — Douyin, TikTok, Bilibili,
    Kuaishou, Weibo, Xiaohongshu, Zhihu, and commercial
    (Xingtu/Huahuo/Billboard) endpoints.
  version: 1.0.0
servers:
  - url: https://api.aisa.one/apis/v1
security:
  - bearerAuth: []
paths:
  /tikhub/kuaishou/app/fetch_tag_feed:
    get:
      tags:
        - TikHub - Kuaishou
      summary: Tag feed
      description: Tag feed
      operationId: get_tikhub_kuaishou_app_fetch_tag_feed
      parameters:
        - name: general_tag_id
          in: query
          required: true
          schema:
            type: string
            title: Tag ID
            description: >-
              Hashtag: pass the tag name or the numeric id from search_tag;
              audio tag: pass the encoded string
          description: >-
            Hashtag: pass the tag name or the numeric id from search_tag; audio
            tag: pass the encoded string
          example: Pure Sweet Girl
        - name: tab
          in: query
          required: false
          schema:
            enum:
              - hot
              - latest
              - image
              - live
            type: string
            title: Sub tab
            description: >-
              hot (most popular) / latest (most recently published) / image
              (image posts) / live (live streams)
            default: hot
          description: >-
            hot (most popular) / latest (most recently published) / image (image
            posts) / live (live streams)
        - name: tag_name
          in: query
          required: false
          schema:
            type: string
            title: Tag name
            description: Topic tag recommended, equal to the tag name
          description: Topic tag recommended, equal to the tag name
        - name: tag_type
          in: query
          required: false
          schema:
            type: integer
            title: Tag type
            description: 1=topic hashtag, 29=sound/music tag
            default: 1
          description: 1=topic hashtag, 29=sound/music tag
        - name: tag_source
          in: query
          required: false
          schema:
            type: integer
            title: Tag source
            description: 2=entered topic page via search, 3=sound tag on post page
            default: 2
          description: 2=entered topic page via search, 3=sound tag on post page
        - name: from_photo_id
          in: query
          required: false
          schema:
            type: string
            title: Source photo ID
            description: Source photoId for entering the tag page (optional)
          description: Source photoId for entering the tag page (optional)
        - name: pcursor
          in: query
          required: false
          schema:
            type: string
            title: Pagination cursor
            description: >-
              Leave empty for the first page, pass pcursor from the previous
              response for subsequent pages
            default: ''
          description: >-
            Leave empty for the first page, pass pcursor from the previous
            response for subsequent pages
      responses:
        '200':
          description: >-
            Successful response. Response structure varies; refer to the actual
            API response.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: AIsa API key. Get yours at https://aisa.one

````