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

# Background Screening

> Social media Vetting and background screening is the process of analyzing a person’s public digital activity to assess potential risks, reputational issues, or behavioral red flags. It is a key part of modern social media screening strategies employers, brands, and institutions use to make informed decisions.

<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}
  {
    "executive_summary": {
      "quick_decision_reference": "The influencer Jay Shetty is a well-known podcaster and motivational speaker with a significant following. Based on the analysis, the risk is medium due to past controversies and the nature of content. Proceed with caution."
    },
    "detailed_findings": {
      "identity_verification": {
        "profile_authenticity": true,
        "content_ownership": true,
        "follower_base_authenticity": "High authenticity with some potential bot followers."
      },
      "audience_demographics_quality": {
        "location": [
          "United States",
          "India",
          "United Kingdom"
        ],
        "age_breakdown": {
          "18-24": 30,
          "25-34": 40,
          "35-44": 20,
          "45+": 10
        },
        "gender_breakdown": {
          "male": 40,
          "female": 60
        },
        "engagement_rate": 5.5,
        "fake_inactive_followers_percentage": 10
      },
      "content_review": {
        "niche_consistency": true,
        "tone_quality": "Inspirational, motivational",
        "alignment_with_brand_values": true,
        "controversial_posts_history": [
          "Accusations of content plagiarism in 2020"
        ]
      },
      "behavioral_reputation_audit": {
        "past_online_behavior": "Generally positive with some controversies",
        "language_use": "Professional and respectful",
        "political_religious_statements": "Generally neutral",
        "involvement_in_scandals": [
          "Plagiarism accusations in 2020"
        ],
        "offensive_conduct": false
      },
      "brand_association_history": {
        "previous_sponsorships_partnerships": [
          "Calm App",
          "Blue Apron",
          "Audible"
        ],
        "alignment_with_brand": true,
        "conflict_with_brand": false
      },
      "legal_compliance_risks": {
        "potential_copyright_violations": "Past accusations of plagiarism",
        "FTC_disclosure_compliance": true,
        "adherence_to_platform_rules": true
      },
      "media_news_mentions": {
        "press_coverage": [
          "Forbes",
          "Inc.",
          "HuffPost"
        ],
        "public_praise": [
          "Recognized for motivational content"
        ],
        "criticism": [
          "Content originality questioned"
        ]
      },
      "competitive_overlap": {
        "collaborations_with_competing_brands": false
      }
    },
    "risk_assessment_table": {
      "identity_verification": "Low",
      "audience_demographics_quality": "Medium",
      "content_review": "Medium",
      "behavioral_reputation_audit": "Medium",
      "brand_association_history": "Low",
      "legal_compliance_risks": "Medium",
      "media_news_mentions": "Medium",
      "competitive_overlap": "Low"
    },
    "final_recommendation": {
      "clear_next_steps": "Proceed with caution, ensuring alignment with brand values and addressing past controversies. Consider a trial partnership before long-term commitment."
    }
  }
  ```
</ResponseExample>


## OpenAPI

````yaml api-reference/openapi-3.0.json get /wf/influencer-screening
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-screening:
    get:
      tags:
        - Workflow
      description: Triggers the workflow influencer-screening
      operationId: get_wf_influencer-screening
      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

````