Getting Started
Quick Start Guide
1. Prerequisites
2. Make Your First API Call
import requests
# Initialize API client
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Content-Type': 'application/json'
}
# Create a new wallet
response = requests.post(
'https://api.bloclabs.com/v1/wallets/create',
headers=headers,
json={
'network': 'polygon',
'environment': 'testnet'
}
)
print(response.json())Authentication
Bearer Token Authentication
Token Management
Authentication Flow
Base URLs
Environment
URL
Description
API Conventions
Request Format
Response Format
Status Codes
Code
Description
Rate Limits
Default Limits
Rate Limit Headers
Handling Rate Limits
Versioning
API Versions
Version Header
Version Lifecycle
Version Support
Last updated