> ## 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.

# Get Shop ID by Share Link

> Get Shop ID by Share Link

Get Shop ID by Share Link

**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/tiktok/shop/web/fetch_shop_id_by_share_link?share_link=https://vt.tiktok.com/ZT2AHoGsE/" \
  -H "Authorization: Bearer YOUR_API_KEY"
```


## OpenAPI

````yaml openapi/tikhub-en.json GET /tikhub/tiktok/shop/web/fetch_shop_id_by_share_link
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/tiktok/shop/web/fetch_shop_id_by_share_link:
    get:
      tags:
        - TikHub - Tiktok
      summary: Get Shop ID by Share Link
      description: Get Shop ID by Share Link
      operationId: get_tikhub_tiktok_shop_web_fetch_shop_id_by_share_link
      parameters:
        - name: share_link
          in: query
          required: true
          schema:
            type: string
            description: Share link
            title: Share Link
          description: Share link
          example: https://vt.tiktok.com/ZT2AHoGsE/
      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

````