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

# YouTube Title Generator

> Generate suitable titles for your videos.

<ResponseExample>
  ```json 200 theme={null}
  {
    "search_optimized_titles": [
      {
        "title": "How to Earn Money Online: Ultimate Passive Income Guide",
        "character_count": 48,
        "primary_keywords_used": [
          "earn money",
          "make money online"
        ],
        "predicted_ctr_score": "High",
        "style": "How-to"
      },
      {
        "title": "10 Proven Ways to Make Money Online Fast and Easy",
        "character_count": 44,
        "primary_keywords_used": [
          "make money online"
        ],
        "predicted_ctr_score": "High",
        "style": "Listicle"
      },
      {
        "title": "Earn Money Passively: 7 Secrets to Make Money Online",
        "character_count": 51,
        "primary_keywords_used": [
          "earn money",
          "make money online"
        ],
        "predicted_ctr_score": "Medium",
        "style": "Listicle"
      }
    ],
    "viral_trending_titles": [
      {
        "title": "Shocking Ways to Make Money Online in 2024 Revealed!",
        "character_count": 48,
        "primary_keywords_used": [
          "make money online"
        ],
        "predicted_ctr_score": "High",
        "style": "Shocking"
      },
      {
        "title": "Earn Money Online Without Any Investment – Watch Now!",
        "character_count": 52,
        "primary_keywords_used": [
          "earn money",
          "make money online"
        ],
        "predicted_ctr_score": "High",
        "style": "How-to"
      },
      {
        "title": "Make Money Online Fast: Top Passive Income Hacks 2024",
        "character_count": 54,
        "primary_keywords_used": [
          "make money online"
        ],
        "predicted_ctr_score": "Medium",
        "style": "Listicle"
      }
    ],
    "ctr_curiosity_titles": [
      {
        "title": "Can You Really Earn Money Online? The Truth Revealed!",
        "character_count": 49,
        "primary_keywords_used": [
          "earn money",
          "make money online"
        ],
        "predicted_ctr_score": "High",
        "style": "Question-based"
      },
      {
        "title": "Make Money Online Secrets Nobody Tells You About",
        "character_count": 48,
        "primary_keywords_used": [
          "make money online"
        ],
        "predicted_ctr_score": "High",
        "style": "Shocking"
      },
      {
        "title": "Earn Money Using These 5 Little-Known Online Methods",
        "character_count": 53,
        "primary_keywords_used": [
          "earn money",
          "make money online"
        ],
        "predicted_ctr_score": "Medium",
        "style": "Listicle"
      }
    ],
    "evergreen_title": {
      "title": "How to Make Money Online: A Beginner’s Passive Income Guide",
      "character_count": 54,
      "primary_keywords_used": [
        "make money online"
      ],
      "predicted_ctr_score": "High",
      "style": "Tutorial"
    }
  }
  ```
</ResponseExample>


## OpenAPI

````yaml api-reference/openapi-3.0.json get /wf/ai-youtube-title-generator
openapi: 3.0.3
info:
  title: Riona API Docs
  version: 1.0.0
  contact:
    email: info@riona.ai
    url: https://riona.ai
servers:
  - url: https://riona.ai/api/1.1
security:
  - bearerAuth: []
tags:
  - name: Workflow
    description: Use this to trigger a workflow
  - name: Data
    description: Use this to fetch, modify and delete data
paths:
  /wf/ai-youtube-title-generator:
    get:
      tags:
        - Workflow
      description: Triggers the workflow ai-youtube-title-generator
      operationId: get_wf_ai-youtube-title-generator
      parameters:
        - name: title
          in: query
          required: false
          description: Title / Topic / Idea
          schema:
            type: string
        - name: audience
          in: query
          required: false
          description: >-
            Examples: 

            - Young professionals aged 25–35 seeking career growth.

            - College students interested in budget travel.

            - Parents looking for ealthy meal ideas for kids.

            - Fitness enthusiasts aiming to build muscle at home.

            - Tech lovers who want the latest gadget reviews.

            - Small business owners wanting social media marketing tips.

            - Eco-conscious consumers seeking sustainable lifestyle hacks.

            - Cryptocurrency investors and blockchain enthusiasts.

            - Sports fans following international football news.

            - Beauty and fashion followers looking for makeup tutorials and
            styling tips.
          schema:
            type: string
        - name: niche
          in: query
          required: false
          description: >-
            Targeted Niche, if you would like to focus the ideas on a specific
            category or a niche add it here.


            Categories Examples: `Fitness & Health` | `Technology` | `Food`

            Niches Examples: `ASMR` | `Shoes` | `Bicycles` | `NFT`
          schema:
            type: string
        - name: tone
          in: query
          required: false
          description: If you would like to add a tone to the desired results.
          schema:
            type: string
        - name: goal
          in: query
          required: false
          description: >-
            Examples: `increase engagement` | `grow followers` | `drive sales` |
            `boost brand awareness`
          schema:
            type: string
        - name: keywords
          in: query
          required: false
          description: >-
            Select the Targeted Keywords. One or more keywords. Separate
            keywords with a comma.
          schema:
            type: string
        - name: api_key
          in: query
          required: true
          description: >-
            This is your account API Key. You can easily locate it in your
            account dashboard.
          schema:
            type: string
      responses:
        '200':
          description: OK
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````