Fury Docs
GithubAnnouncements
  • Introduction
  • Raze.bot
    • Solana UI
  • FURY API
    • Getting Started
  • Overview & Protocols
  • Token Management
  • Wallet Operations
  • Bundler e Cleaner
  • PnL calculator
  • Generate public key mint
  • FURY SDK
    • SDK for Python
    • SDK for Rust
    • SDK for TypeScript
Powered by GitBook
LogoLogo

Untitled

  • Website
On this page
  • Getting Started (Fury API)
  • Base URL
  • Authentication
  • Making Your First Call (Health Check)
  1. FURY API

Getting Started

Getting Started (Fury API)

Base URL

All API requests to the Fury service should be prefixed with its base URL. The specific URL depends on your deployment environment.

Example: https://solana.fury.bot/api/analytics/pnl

Please replace [Your_Service_Base_URL] with the actual base URL provided for your instance of the Fury service.

Authentication

API requests to Fury may require authentication to ensure security and proper usage tracking. The exact authentication method is determined by the service deployment.

[Authentication Method Details - Replace this bracketed section with specific instructions. For example:"Fury uses API Key authentication. You must include a custom header X-API-KEY with your assigned key in every request."or"Authentication is handled via Bearer tokens. Include an Authorization: Bearer your_token header in your requests."or state if no authentication is needed for certain deployments.]

Please refer to the specific deployment instructions or contact the administrators if you are unsure how to authenticate your requests.

Making Your First Call (Health Check)

A simple way to verify that you can connect to the API and that it's running is to use the health check endpoint. This endpoint typically requires no authentication.

Request:

curl [Your_Service_Base_URL]/health
message = "hello world"
print(message)
message = "hello world"
puts message

Successful Response (200 OK):

{
  "status": "Healthy"
}
    

If you receive this response, you have successfully connected to the Fury API!

PreviousSolana UINextOverview & Protocols

Last updated 1 month ago