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

# Analyze Social Profile

> Analyze any social profile

<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}
  {
    "profile_overview": {
      "short_bio": "Jay Shetty Podcast - Conversations with the world’s most insightful people.",
      "brand_personality_tone": "Inspirational, Thoughtful, Conversational",
      "target_audience": "Individuals interested in personal development, mindfulness, and motivational content."
    },
    "key_statistics": {
      "followers_count": 600000,
      "following_count": 0,
      "post_count": 150,
      "engagement_rate": 0.05,
      "average_likes": 30000,
      "average_comments": 500,
      "posting_frequency": "Weekly"
    },
    "content_strategy": {
      "types_of_content": [
        "videos",
        "shorts"
      ],
      "most_common_themes": [
        "personal growth",
        "mindfulness",
        "interviews with thought leaders"
      ],
      "posting_style": "Long-form interviews and short motivational clips"
    },
    "audience_insights": {
      "demographic_distribution": {
        "age": "18-45",
        "gender": "Mixed",
        "location": "Global, primarily English-speaking countries"
      },
      "interaction_patterns": "High engagement on motivational clips and interviews with celebrities",
      "best_performing_content": "Interviews with high-profile guests and actionable self-improvement tips"
    },
    "strengths": [
      "High-quality production",
      "Engaging and insightful content",
      "Strong guest lineup"
    ],
    "weaknesses": [
      "Limited interaction with followers",
      "No diversified content types beyond video"
    ],
    "opportunities": [
      "Incorporate more interactive content like Q&A sessions",
      "Expand content to include behind-the-scenes or personal stories",
      "Collaborate with other influencers for cross-promotion"
    ],
    "top_performing_content": [
      "Interviews with celebrities",
      "Motivational clips with actionable advice"
    ],
    "competitive_positioning": {
      "comparison_to_similar_accounts": "Strong presence in the motivational podcast niche with unique guest insights, but could benefit from more diversified content strategies."
    }
  }
  ```
</ResponseExample>


## OpenAPI

````yaml api-reference/openapi-3.0.json get /wf/adv-analyze-profile
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-analyze-profile:
    get:
      tags:
        - Workflow
      description: Triggers the workflow adv-analyze-profile
      operationId: get_wf_adv-analyze-profile
      parameters:
        - name: url
          in: query
          required: true
          description: |-
            Profile URL. 
             Supported Platforms: `youtube` | `tiktok` | `instagram` | `facebook` | `twitter` | `telegram`
          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

````