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

# Email Lookup

> Submit a TikTok, Instagram, or YouTube creator profile URL to retrieve contact emails, normalized creator info, and remaining quota.



## OpenAPI

````yaml openapi/waveinflu.json POST /waveinflu/email-lookup
openapi: 3.0.0
info:
  title: WaveInflu API
  version: 1.0.0
  description: >-
    WaveInflu influencer discovery APIs — Email Lookup and Similar Creators for
    TikTok, Instagram, and YouTube.
servers:
  - url: https://api.aisa.one/apis/v1
security:
  - bearerAuth: []
paths:
  /waveinflu/email-lookup:
    post:
      summary: Email Lookup
      description: >-
        Submit a TikTok, Instagram, or YouTube creator profile URL and get back
        normalized creator info, contact emails, and remaining quota.
      operationId: waveinflu-email-lookup
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - url
              properties:
                url:
                  type: string
                  description: TikTok, Instagram, or YouTube creator profile URL.
                  example: https://www.instagram.com/onkimia/
      responses:
        '200':
          description: Email lookup completed
          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: 'Platform parsed from the profile URL: tiktok, instagram, or youtube.'
        username:
          type: string
          nullable: true
          description: Creator username returned by the lookup chain.
        profileLink:
          type: string
          description: Normalized profile URL used for this request.
        platformUserId:
          type: string
          nullable: true
          description: Platform-side creator ID, if available.
        region:
          type: string
          nullable: true
          description: Creator region, if available.
        email:
          type: string
          nullable: true
          description: Primary email address; null if not found.
        emails:
          type: array
          items:
            type: string
          description: All unique emails found in this lookup.
        contacts:
          type: array
          items:
            type: string
          description: External contact links identified during the lookup.
        quota:
          $ref: '#/components/schemas/EmailLookupQuota'
    EmailLookupQuota:
      type: object
      properties:
        cost:
          type: number
          description: Credits consumed by this request.
        remainingQuota:
          type: number
          description: Remaining email-lookup credits after this request.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````