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

# Generate Signature Tagline

> Public endpoint: generate professional taglines for email signatures.

Rate-limited to 10 calls/hour per IP (unauthenticated).



## OpenAPI

````yaml /openapi.json post /api/v1/signature/tagline
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/signature/tagline:
    post:
      tags:
        - Public
      summary: Generate Signature Tagline
      description: |-
        Public endpoint: generate professional taglines for email signatures.

        Rate-limited to 10 calls/hour per IP (unauthenticated).
      operationId: generate_signature_tagline_api_v1_signature_tagline_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TaglineRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    TaglineRequest:
      properties:
        name:
          type: string
          maxLength: 100
          title: Name
          default: ''
        job_title:
          type: string
          maxLength: 100
          title: Job Title
          default: ''
        company:
          type: string
          maxLength: 100
          title: Company
          default: ''
        industry:
          type: string
          maxLength: 100
          title: Industry
          default: ''
        tone:
          type: string
          pattern: ^(professional|friendly|creative|bold)$
          title: Tone
          default: professional
        count:
          type: integer
          maximum: 5
          minimum: 1
          title: Count
          default: 3
      type: object
      title: TaglineRequest
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    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

````