API Design
The Contract Calls API provides a caching layer for interacting with Stacks smart contracts. This document provides a comprehensive overview of how the API works, its key features, and best practices for integration.
Key Features
Standardized Response Format
All endpoints return responses in a consistent format:
Success Response
Error Response
Caching
Responses are cached to reduce API calls and improve performance
Default TTL (Time-To-Live) is configurable per endpoint
Cache control options provide fine-grained control:
bustCache
: Bypass the cache and force a fresh requestskipCache
: Don't cache the result of this specific requestttl
: Set a custom TTL for this specific request
Cache Control Details
The cache control options can be specified in the request body:
bustCache
When
true
, the cache is bypassed and a fresh request is made to the Stacks APIThe result will still be cached (unless
skipCache
is alsotrue
)Use this when you need the most up-to-date data
Default:
false
skipCache
When
true
, the result will not be stored in the cacheThe cache is still checked first (unless
bustCache
istrue
)Use this for one-time queries or highly volatile data
Default:
false
ttl
Time in seconds that the result should be cached
Set to
0
to cache indefinitely (useful for immutable data)Higher values improve performance but may return stale data
Default values by data type:
Contract ABIs: Indefinite (never expire)
Read-only calls: 60 seconds
Token balances: 30 seconds
Blockchain status: 15 seconds
Cache Key Generation
Cache keys are generated deterministically based on:
Contract address
Contract name
Function name
Function arguments (hashed)
Network (mainnet/testnet)
This ensures that identical calls from different clients use the same cache entry.
Rate Limiting
Implements token bucket algorithm to prevent exceeding Stacks API rate limits
Automatic queuing of requests when rate limits are approached
Prioritization of requests to ensure fair processing
Error Handling
Standardized error codes across all endpoints
Unique error IDs for easier debugging and tracking
Detailed error messages and context in the response
Validation
Contract addresses are validated for correct format and network
Function names are validated against contract ABIs
Function arguments are validated for correct types and formats
Architecture
The Contract Calls API uses a multi-layered approach:
Request Layer: Handles incoming requests and routes them to the Durable Object
Durable Object Layer: Maintains state for rate limiting and caching
Service Layer: Provides contract fetching, ABI validation, and other services
Utility Layer: Common utilities for request/response handling and data transformation
Best Practices
Handling Responses
Always check the success
field to determine if the request was successful:
Error Handling
Implement specific handling for common error codes:
INVALID_CONTRACT_ADDRESS
: Validate contract addresses before sendingINVALID_FUNCTION
: Check function names against contract ABIsINVALID_ARGUMENTS
: Ensure arguments match the expected typesUPSTREAM_API_ERROR
: Handle temporary Stacks API issues with retries
Optimizing Cache Usage
Use consistent cache keys for the same data
Only use
bustCache
when you need the latest dataUse
skipCache
for frequently changing data that shouldn't be cachedSet custom
ttl
values based on how frequently the data changesGroup related calls to minimize API requests
Working with BigInt Values
For large numbers that exceed JavaScript's safe integer limits:
Values are returned as strings with the
n
suffixUse BigInt in JavaScript to handle these values
In other languages, parse them as appropriate numeric types
Integration Examples
See the Integration Examples document for detailed code examples in various programming languages.
Last updated