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

# Social Platform Integration

> Integrate ZKScore with social platforms and communities

## Overview

Integrate ZKScore into social platforms to verify users, combat bots, and reward quality engagement.

## Use Cases

### Verified User Status

<CodeGroup>
  ```javascript JavaScript theme={null}
  async function getUserVerificationLevel(address) {
    const score = await zkScore.getScore(address);
    const attestations = await trustRegistry.getReceivedAttestationUIDs(address);
    
    if (score.total >= 500 && attestations.length >= 3) return 'verified';
    if (score.total >= 300) return 'trusted';
    return 'new';
  }
  ```
</CodeGroup>

### Bot Prevention

Filter out low-reputation accounts:

<CodeGroup>
  ```javascript JavaScript theme={null}
  async function isLikelyBot(address) {
    const score = await zkScore.getScore(address);
    return score.total < 50;
  }
  ```
</CodeGroup>

## Related Documentation

* [Trust Registry](/contracts/trust-registry/overview)
* [Social Use Case](/use-cases/social)
