> ## 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 Use Case

> Combat bots and spam using ZKScore

## Overview

Use ZKScore to verify real users, combat bots, and reduce spam on social platforms.

## Implementation

<CodeGroup>
  ```javascript JavaScript theme={null}
  async function canPostContent(user) {
    const score = await zkScore.getScore(user);
    
    if (score.total < 50) {
      return { allowed: false, reason: 'Minimum score not met' };
    }
    
    return { allowed: true };
  }
  ```
</CodeGroup>

## Related Documentation

* [Social Integration](/integrations/social)
