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

# Sponsorship Analysis

> Analyze and rate the influencer for potential brand sponsorship.

<Check>Supported Platforms:  <Icon icon="youtube" size={20} />  <Icon icon="tiktok" size={20} />  <Icon icon="instagram" size={20} />  <Icon icon="facebook" size={20} />  <Icon icon="x-twitter" size={20} />  <Icon icon="telegram" size={20} /></Check>

<ResponseExample>
  ```json 200 theme={null}
  {
    "summary_table": {
      "influencer_rating": 8,
      "follower_count": 1000000,
      "engagement_rate": 5.2,
      "cost_range_usd": [
        5000,
        15000
      ],
      "best_fit_niche": [
        "self-help",
        "wellness",
        "personal development"
      ]
    },
    "detailed_analysis": {
      "influencer_rating": {
        "score": 8,
        "explanation": "Jay Shetty has a strong reach with a large following and high-quality content. His engagement is solid, and he is known for authenticity in the personal development and wellness space."
      },
      "audience_demographics_fit": {
        "age": "18-45",
        "gender": [
          "male",
          "female"
        ],
        "location": [
          "United States",
          "United Kingdom",
          "India"
        ],
        "interests": [
          "self-help",
          "mindfulness",
          "personal growth"
        ],
        "compatibility": "Highly compatible with brands targeting wellness and personal development audiences."
      },
      "engagement_reach_stats": {
        "followers": 1000000,
        "average_likes": 50000,
        "average_comments": 2000,
        "average_shares": 1000,
        "average_video_views": 200000,
        "engagement_rate": 5.2
      },
      "estimated_sponsorship_cost_usd": {
        "range": [
          5000,
          15000
        ],
        "explanation": "Based on the influencer's reach and engagement, the cost aligns with market benchmarks for YouTube sponsorships."
      },
      "best_fit_advertising_niches": {
        "industries": [
          "self-help",
          "wellness",
          "personal development"
        ],
        "products": [
          "books",
          "online courses",
          "meditation apps"
        ]
      },
      "performance_potential": {
        "expected_roi": "High",
        "campaign_reach": "Wide",
        "conversion_potential": "Strong, especially for wellness and personal growth products."
      },
      "risks_limitations": {
        "factors": [
          "Content is niche-focused, which may limit appeal for broader products.",
          "Potential saturation in the wellness space."
        ]
      }
    },
    "final_recommendation": "sponsor",
    "contact_information": {
      "email": "contact@jayshetty.me",
      "website": "https://jayshetty.me"
    }
  }
  ```
</ResponseExample>


## OpenAPI

````yaml api-reference/openapi-3.0.json get /wf/influencer-sponsorship
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/influencer-sponsorship:
    get:
      tags:
        - Workflow
      description: Triggers the workflow influencer-sponsorship
      operationId: get_wf_influencer-sponsorship
      parameters:
        - name: url
          in: query
          required: true
          description: Profile url
          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

````