Introduction

Welcome to the Yatori's API documentation. Yatori's API provides simple endpoints for generating Solana transaction data that can be used in your applications.

What is Yatori's API?

Yatori's 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 Yatori's API:

  1. Sign up for an API key
  2. Choose an endpoint from the sidebar
  3. Review the parameters and example requests
  4. Integrate the API responses into your application

Base URL

https://arrow-api.yatori.io/v1/

Authentication

Yatori's API requires authentication via API key. You'll need to sign up to receive your API key. All API requests must include your API key in the Authorization header as a Bearer token.

Response Format

All endpoints return JSON responses with the following structure:

{}
JSON
{
  "data": "...", // Transaction data or account information
  "status": "..." // Status message
}