Introduction
Welcome to the Arrow API documentation. Arrow API provides simple endpoints for generating Solana transaction data that can be used in your applications.
What is Arrow API?
Arrow API is a service that generates unsigned Solana transaction data for common operations like SOL transfers, token transfers, and token account lookups. Instead of building complex transaction serialization logic yourself, you can use our API to get the raw transaction data ready for signing.
Getting Started
To get started with Arrow API:
- Choose an endpoint from the sidebar (SOL Transfer, Token Transfer, or Get Token Account)
- Review the parameters and example requests
- Use the playground to test your requests
- Integrate the API responses into your application
Base URL
https://kouba.io
Authentication
Currently, Arrow API does not require authentication. All endpoints are publicly accessible.
Response Format
All endpoints return JSON responses with the following structure:
{
"data": "...", // Transaction data or account information
"status": "..." // Status message
}