> ## 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 single ad detail

> Get single ad detail

Get single ad detail

**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 -X POST "https://api.aisa.one/apis/v1/tikhub/tiktok/ads/get_ads_detail" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'  # see request schema below
```


## OpenAPI

````yaml openapi/tikhub-en.json POST /tikhub/tiktok/ads/get_ads_detail
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/ads/get_ads_detail:
    post:
      tags:
        - TikHub - Tiktok
      summary: Get single ad detail
      description: Get single ad detail
      operationId: post_tikhub_tiktok_ads_get_ads_detail
      requestBody:
        content:
          application/json:
            schema:
              $ref: >-
                #/components/schemas/Body_get_ads_detail_api_v1_tiktok_ads_get_ads_detail_post
        required: true
      responses:
        '200':
          description: >-
            Successful response. Response structure varies; refer to the actual
            API response.
components:
  schemas:
    Body_get_ads_detail_api_v1_tiktok_ads_get_ads_detail_post:
      properties:
        ads_id:
          type: string
          title: Ads Id
          description: Ad ID
        cookie:
          type: string
          title: Cookie
          description: Custom Cookie string (optional)
      type: object
      required:
        - ads_id
      title: Body_get_ads_detail_api_v1_tiktok_ads_get_ads_detail_post
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: AIsa API key. Get yours at https://aisa.one

````