> ## Documentation Index
> Fetch the complete documentation index at: https://docs.555hyper.link/llms.txt
> Use this file to discover all available pages before exploring further.

# Developer Resources

> API documentation and SDK for integrations

## Render Network Developer Hub

Comprehensive resources for developers building with Render Network, including APIs, SDKs, documentation, and integration guides.

<Info>
  **API Version:** v2.1.0 **SDK Languages:** JavaScript, Python, Go **Base
  URL:** [https://api.rendernet.work/v2](https://api.rendernet.work/v2) **Rate Limit:** 1000 requests/minute
</Info>

## Getting Started

### Development Environment Setup

<Steps>
  <Step title="Create Developer Account">
    Register for API access and developer tools:

    ```javascript theme={null}
    // Register for developer access
    const registration = await fetch('/api/developer/register', {
      method: 'POST',
      headers: { 'Content-Type': 'application/json' },
      body: JSON.stringify({
        email: 'developer@example.com',
        project: 'My Render Network Integration',
        useCase: 'Streaming overlay integration'
      })
    });
    ```
  </Step>

  <Step title="Get API Keys">
    Generate and secure your API credentials:

    ```javascript theme={null}
    // Generate API keys
    const keys = await fetch('/api/developer/keys', {
      method: 'POST',
      headers: { 'Authorization': `Bearer ${developerToken}` }
    });

    const { apiKey, secretKey } = await keys.json();
    // Store securely - never expose in client-side code
    ```
  </Step>
</Steps>
