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

# 电子邮件查询

> 提交 TikTok、Instagram 或 YouTube 创作者个人资料 URL，以获取联系邮箱、标准化的创作者信息和剩余配额。



## OpenAPI

````yaml openapi/zh/waveinflu.json POST /waveinflu/email-lookup
openapi: 3.0.0
info:
  title: WaveInflu API
  version: 1.0.0
  description: WaveInflu 网红发现 API——面向 TikTok、Instagram 和 YouTube 的邮箱查询和相似创作者功能。
servers:
  - url: https://api.aisa.one/apis/v1
security:
  - bearerAuth: []
paths:
  /waveinflu/email-lookup:
    post:
      summary: 电子邮件查询
      description: 提交 TikTok、Instagram 或 YouTube 创作者个人资料 URL，获取标准化的创作者信息、联系邮箱和剩余配额。
      operationId: waveinflu-email-lookup
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - url
              properties:
                url:
                  type: string
                  description: TikTok、Instagram 或 YouTube 创作者个人资料 URL。
                  example: https://www.instagram.com/onkimia/
      responses:
        '200':
          description: 电子邮件查询已完成
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: number
                    example: 1000
                  message:
                    type: string
                    example: Email lookup completed
                  data:
                    $ref: '#/components/schemas/EmailLookupData'
components:
  schemas:
    EmailLookupData:
      type: object
      properties:
        platform:
          type: string
          description: 从个人资料 URL 解析的平台：tiktok、instagram 或 youtube。
        username:
          type: string
          nullable: true
          description: 查询链返回的创作者用户名。
        profileLink:
          type: string
          description: 用于此请求的标准化个人资料 URL。
        platformUserId:
          type: string
          nullable: true
          description: 平台侧创作者 ID（如有）。
        region:
          type: string
          nullable: true
          description: 创作者所在地区（如有）。
        email:
          type: string
          nullable: true
          description: 主电子邮件地址；如未找到则为 null。
        emails:
          type: array
          items:
            type: string
          description: 此次查询中找到的所有唯一电子邮件地址。
        contacts:
          type: array
          items:
            type: string
          description: 查询过程中识别出的外部联系人链接。
        quota:
          $ref: '#/components/schemas/EmailLookupQuota'
    EmailLookupQuota:
      type: object
      properties:
        cost:
          type: number
          description: 此请求消耗的额度。
        remainingQuota:
          type: number
          description: 此请求完成后剩余的电子邮件查找额度。
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````