Read-Only Function Calls
This endpoint allows you to make read-only calls to smart contract functions. The response is cached for future requests.
Endpoint
Path Parameters
contractAddress
: The principal address of the contract (e.g.,ST252TFQ08T74ZZ6XK426TQNV4EXF1D4RMTTNCWFA
)contractName
: The name of the contract (e.g.,media3-action-proposals-v2
)functionName
: The name of the function to call (e.g.,get-proposal
)
Request Body
Request Body Parameters
functionArgs
: Array of arguments to pass to the function (using simplified Clarity value format)network
(optional): The Stacks network to use (mainnet
ortestnet
, defaults totestnet
)senderAddress
(optional): The address to use as the sender (defaults to the contract address)strictJsonCompat
(optional): Whether to ensure values are JSON compatible (defaults totrue
)preserveContainers
(optional): Whether to preserve container types in the output (defaults tofalse
)cacheControl
(optional): Options to control caching behavior:bustCache
(optional): If true, bypass the cache and force a fresh request (defaults tofalse
)skipCache
(optional): If true, don't cache the result of this request (defaults tofalse
)ttl
(optional): Custom time-to-live in seconds for this specific request (overrides default TTL)
Timeout and Retry Behavior
The API implements automatic timeouts and retries for contract calls:
Default Timeout: 5 seconds for all Stacks API calls
Automatic Retries: Failed requests are automatically retried up to 3 times with exponential backoff
Retryable Errors:
Timeouts
5xx errors from the Stacks API
Rate limit exceeded errors
When all retries are exhausted, the API returns an appropriate error response with details about the failure.
Response Format
All responses follow a standardized format to make integration consistent and error handling predictable.
Success Response
The data
field contains the decoded Clarity value returned by the contract function. The values are automatically converted to JavaScript/JSON-compatible types:
Clarity integers become JavaScript numbers (or strings for large numbers)
Clarity booleans become JavaScript booleans
Clarity strings become JavaScript strings
Clarity principals become JavaScript strings
Clarity tuples become JavaScript objects
Clarity lists become JavaScript arrays
Clarity optional values become the value or null
Clarity response values become the unwrapped value (the error is thrown if it's an error response)
Error Response
The error response includes:
id
: A unique identifier for the error instance (useful for tracking in logs)code
: A standardized error code (see Common Error Codes below)message
: A human-readable description of the errordetails
: Additional context-specific information about the error
Common Error Codes
INVALID_CONTRACT_ADDRESS
- The contract address is not a valid Stacks addressINVALID_FUNCTION
- The function doesn't exist in the contract ABIINVALID_ARGUMENTS
- The arguments don't match what the function expectsUPSTREAM_API_ERROR
- Error from the Stacks API when calling the functionVALIDATION_ERROR
- Error validating the request parametersTIMEOUT
- The request to the Stacks API timed out (default timeout: 5 seconds)RATE_LIMIT_EXCEEDED
- The rate limit for Stacks API requests has been exceeded
Example Requests
cURL
Node.js with Stacks.js
Python with Simplified Format
Example Response
Success Response
Error Response Example
Last updated