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

# Scrape Website For Signature

> Public endpoint: extract brand identity from a website URL to prefill the
Gmail Signature Generator form.

Reuses the authenticated brand-kit scraper under the hood; rate-limited to
5 calls/hour per IP via the RateLimitMiddleware entry for this path.



## OpenAPI

````yaml /openapi.json post /api/v1/signature/scrape-website
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/signature/scrape-website:
    post:
      tags:
        - Public
      summary: Scrape Website For Signature
      description: >-
        Public endpoint: extract brand identity from a website URL to prefill
        the

        Gmail Signature Generator form.


        Reuses the authenticated brand-kit scraper under the hood; rate-limited
        to

        5 calls/hour per IP via the RateLimitMiddleware entry for this path.
      operationId: scrape_website_for_signature_api_v1_signature_scrape_website_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/WebsiteScrapeRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebsiteScrapeResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    WebsiteScrapeRequest:
      properties:
        url:
          type: string
          maxLength: 2048
          minLength: 4
          title: Url
      type: object
      required:
        - url
      title: WebsiteScrapeRequest
    WebsiteScrapeResponse:
      properties:
        company:
          anyOf:
            - type: string
            - type: 'null'
          title: Company
        tagline:
          anyOf:
            - type: string
            - type: 'null'
          title: Tagline
        website:
          anyOf:
            - type: string
            - type: 'null'
          title: Website
        logo_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Logo Url
        accent_color:
          anyOf:
            - type: string
            - type: 'null'
          title: Accent Color
        social_links:
          items:
            $ref: '#/components/schemas/SignatureSocialLink'
          type: array
          title: Social Links
        suggested_template:
          anyOf:
            - type: string
            - type: 'null'
          title: Suggested Template
        template_reason:
          anyOf:
            - type: string
            - type: 'null'
          title: Template Reason
      type: object
      title: WebsiteScrapeResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    SignatureSocialLink:
      properties:
        platform:
          type: string
          title: Platform
        url:
          type: string
          title: Url
      type: object
      required:
        - platform
        - url
      title: SignatureSocialLink
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````