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

# Compare Profiles

> Compare and analyze two social profiles.

<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}
  {
    "comparison_table": {
      "basic_info": {
        "platform": {
          "profile_1": "YouTube",
          "profile_2": "TikTok"
        },
        "account_type": {
          "profile_1": "Podcast Channel",
          "profile_2": "Influencer/Content Creator"
        },
        "niche": {
          "profile_1": "Self-help, Motivation, Personal Development",
          "profile_2": "Humor, Entertainment"
        },
        "target_audience": {
          "profile_1": "Adults interested in personal growth",
          "profile_2": "Teens and young adults seeking entertainment"
        }
      },
      "engagement_metrics": {
        "followers": {
          "profile_1": 5000000,
          "profile_2": 160000000
        },
        "average_likes": {
          "profile_1": 50000,
          "profile_2": 2500000
        },
        "comments": {
          "profile_1": 5000,
          "profile_2": 150000
        },
        "shares": {
          "profile_1": 1000,
          "profile_2": 30000
        },
        "engagement_rate": {
          "profile_1": 1,
          "profile_2": 1.6
        }
      },
      "content_strategy": {
        "posting_frequency": {
          "profile_1": "Weekly",
          "profile_2": "Daily"
        },
        "content_types": {
          "profile_1": [
            "Interviews",
            "Thought Pieces",
            "Guided Meditations"
          ],
          "profile_2": [
            "Short Skits",
            "Visual Gags",
            "Silent Comedy"
          ]
        },
        "tone_style": {
          "profile_1": "Informative, Inspirational",
          "profile_2": "Humorous, Light-hearted"
        },
        "quality_of_visuals": {
          "profile_1": "High",
          "profile_2": "Moderate"
        }
      },
      "audience_insights": {
        "demographics": {
          "profile_1": "25-45 years, diverse gender",
          "profile_2": "13-24 years, diverse gender"
        },
        "geographic_distribution": {
          "profile_1": [
            "US",
            "UK",
            "India"
          ],
          "profile_2": [
            "Global",
            "Italy",
            "US"
          ]
        },
        "audience_interests": {
          "profile_1": [
            "Self-improvement",
            "Mindfulness",
            "Spirituality"
          ],
          "profile_2": [
            "Comedy",
            "Trends",
            "Pop Culture"
          ]
        }
      },
      "growth_trends": {
        "recent_follower_growth": {
          "profile_1": "Stable",
          "profile_2": "Rising"
        },
        "engagement_trend": {
          "profile_1": "Stable",
          "profile_2": "Rising"
        }
      },
      "strengths_weaknesses": {
        "strengths": {
          "profile_1": [
            "Strong brand identity",
            "Deep, meaningful content"
          ],
          "profile_2": [
            "Massive follower base",
            "High engagement rates"
          ]
        },
        "weaknesses": {
          "profile_1": [
            "Niche audience",
            "Lower engagement rate"
          ],
          "profile_2": [
            "Limited depth in content",
            "Over-reliance on trends"
          ]
        }
      },
      "key_opportunities": {
        "profile_1": [
          "Expand into short-form content",
          "Collaborate with popular TikTok influencers"
        ],
        "profile_2": [
          "Introduce more in-depth content",
          "Collaborate with motivational speakers"
        ]
      }
    },
    "key_findings": "Profile 2 has a significant follower base and higher engagement rates due to its humorous, easily consumable content. Profile 1 offers deep, meaningful content that resonates well with its niche audience but could benefit from diversifying its content strategy to reach a broader audience.",
    "actionable_recommendations": {
      "profile_1": [
        "Increase posting frequency",
        "Experiment with short-form content",
        "Engage with TikTok trends"
      ],
      "profile_2": [
        "Incorporate educational or motivational content",
        "Leverage YouTube for longer-form videos",
        "Engage with audience through interactive content"
      ]
    }
  }
  ```
</ResponseExample>


## OpenAPI

````yaml api-reference/openapi-3.0.json get /wf/adv-compare-profiles
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/adv-compare-profiles:
    get:
      tags:
        - Workflow
      description: Triggers the workflow adv-compare-profiles
      operationId: get_wf_adv-compare-profiles
      parameters:
        - name: profile_1
          in: query
          required: true
          description: URL of profile 1
          schema:
            type: string
            default: https://www.youtube.com/@JayShettyPodcast.
        - name: profile_2
          in: query
          required: true
          description: URL of profile 2
          schema:
            type: string
            default: https://www.tiktok.com/@khaby.lame
        - 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

````