Nexgent Public API

Public API for interacting with Nexgent services.

BASE URL
https://public.api.nexgent.ai

Platform

APIs for health checks.

Health check

GET
/v1/platform/health
1

Agents

APIs for managing agents and their data.

Get all agents

Retrieve all agents for the authenticated user.

Protected by API Key

Headers

Authorization

required, string

The Authorization header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE.

GET
/v1/agents/
1

Get agent by ID

Retrieve agent details by agent ID.

Protected by API Key

Headers

Authorization

required, string

The Authorization header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE.

GET
/v1/agents/:agentId
1

Get agent wallet balance

Retrieve wallet balances and total USD value for a specific agent.

Protected by API Key

Headers

Authorization

required, string

The Authorization header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE.

GET
/v1/agents/:agentId/wallet
1

Get agent live trades

Retrieve live trades for an agent.

Protected by API Key

Headers

Authorization

required, string

The Authorization header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE.

GET
/v1/agents/:agentId/live-trades
1

Prices

APIs to retrieve current market prices.

ENDPOINTS

Get latest SOL price

Retrieve the latest SOL token price.

Protected by API Key

Headers

Authorization

required, string

The Authorization header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE.

GET
/v1/prices/sol
1

Signals

APIs for trading signals and related data.

Get latest trading signals

Retrieve the latest trading signals for an agent.

Protected by API Key

Headers

Authorization

required, string

The Authorization header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE.

GET
/v1/agents/:agentId/signals
1

Get trading signal by ID

Retrieve a specific trading signal by ID.

Protected by API Key

Headers

Authorization

required, string

The Authorization header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE.

GET
/v1/agents/:agentId/signals/:signalId
1

Whale Trades

APIs to fetch whale trading activities.

Get latest whale trades

Retrieve the latest whale trade transactions.

Protected by API Key

Headers

Authorization

required, string

The Authorization header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE.

GET
/v1/whale-trades/latest
1

Get latest whale trades by mint address

Retrieve the latest whale trades filtered by token address.

Protected by API Key

Headers

Authorization

required, string

The Authorization header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE.

Path Parameters

tokenAddress

required, string

The mint address of the token to filter whale trades by.

GET
/v1/whale-trades/:tokenAddress
1

Get usage

Protected by API Key

Headers

Authorization

required, string

The Authorization header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE.

GET
/v1/platform/usage
1