runpod-sdk 0.1.0

RunPod SDK for Rust
Documentation
# RunPod SDK Configuration
# Copy this file to .env and set your actual values

# Your RunPod API key (required)
# Get from: https://www.runpod.io/console/user/settings
RUNPOD_API_KEY=your_runpod_api_key_here

# Custom REST API base URL (optional, defaults to https://rest.runpod.io/v1)
RUNPOD_REST_URL=https://rest.runpod.io/v1

# Custom API URL for serverless endpoints (optional, defaults to https://api.runpod.io/v2)
# Only used when serverless feature is enabled
RUNPOD_API_URL=https://api.runpod.io/v2

# Custom GraphQL API URL (optional, defaults to https://api.runpod.io/graphql)
# Only used when graphql feature is enabled
RUNPOD_GRAPHQL_URL=https://api.runpod.io/graphql

# Request timeout in seconds (optional, defaults to 30, max 300)
RUNPOD_TIMEOUT_SECS=30