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:

  1. Choose an endpoint from the sidebar (SOL Transfer, Token Transfer, or Get Token Account)
  2. Review the parameters and example requests
  3. Use the playground to test your requests
  4. 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
}