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

# Complete SDK Integration Example

> End-to-end example of full ZKScore SDK integration

## Overview

Complete example showing full ZKScore SDK integration in a production application.

## Implementation

<CodeGroup>
  ```javascript JavaScript theme={null}
  import { ZKScoreClient } from '@zkscore/sdk';

  const client = new ZKScoreClient({
    apiKey: process.env.ZKSCORE_API_KEY,
    environment: 'mainnet'
  });

  async function getUserProfile(identity) {
    const [score, identityData, achievements] = await Promise.all([
      client.getScore(identity),
      client.getIdentity(identity),
      client.getAchievements(identity)
    ]);
    
    return { score, identity: identityData, achievements };
  }
  ```
</CodeGroup>

## Related Documentation

* [JavaScript SDK](/sdk/javascript/getting-started)
* [React SDK](/sdk/react/getting-started)
