Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the NanoData API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fnanodata.io%2Fnanodata" | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fnanodata.io%2Fnanodata" | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with NanoData API.
Place and manage exchange trades
Copy the trades of another trader
Read open positions on an exchange
Query market sentiment indicators
Retrieve leaderboard data
GET STARTED
Create a Stripe checkout session for a subscription
Patterns agents use NanoData API for, with concrete tasks.
★ Automated Exchange Trading
An AI agent connected through Jentic can act on a trading strategy. It places trades on a connected exchange and reads back the resulting open positions, so an assistant can execute a plan and confirm the position it opened.
Place a trade on the exchange and return the resulting open positions
Copy Trading
Following successful traders is a core NanoData feature. The API starts copy-trading a chosen trader and exposes the leaderboard used to pick one, letting an agent shortlist top performers and set up a copy relationship.
Fetch the leaderboard and start copy-trading the top-ranked trader
Market Analytics
Decisions need context. The NanoData API returns market sentiment indicators, so an agent can read the current sentiment before it recommends or places a trade and report the reading back to the user.
Read the current market sentiment and summarize it for the user
19 endpoints — the nanodata api powers a crypto copy-trading and market-analytics platform.
METHOD
PATH
DESCRIPTION
/api/exchange
Place an exchange trade
/api/exchange/copyTrade
Copy another trader's trades
/api/exchange/getOpenPositions
Get current open positions
/api/exchange/marketSentiments
Get market sentiment indicators
/api/leaderboards/getLeaderboardsData
Get leaderboard data
/api/exchange
Place an exchange trade
/api/exchange/copyTrade
Copy another trader's trades
/api/exchange/getOpenPositions
Get current open positions
/api/exchange/marketSentiments
Get market sentiment indicators
/api/leaderboards/getLeaderboardsData
Get leaderboard data
What agents get from Jentic-routed access to this vendor.
Setup
Wiring the NanoData API by hand means obtaining a token, building trade and copy-trade payloads, and threading the token through every call yourself. Through Jentic you install once, import NanoData from the API Directory, store the token once, and your agent calls the trading and market operations directly.
Permission scoping
You choose which of the operations your agent may call. You might allow market sentiment and leaderboard reads while blocking trade placement and copy-trading, so the agent can research without moving funds.
Credential isolation
Your NanoData token is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'place a trade', and Jentic returns the matching NanoData operation with its input schema so the agent calls it with the right parameters.
Alternatives and complements available in the Jentic catalogue.
Specific to using NanoData API through Jentic.
What authentication does the NanoData API use?
Its operations authenticate with an HTTP Bearer token that is a JWT, per the OpenAPI spec, aside from a Stripe webhook callback that the platform receives. Through Jentic the token is stored once, encrypted, by your own self-hosted instance and injected when the agent calls, so it never appears in the agent's prompt or logs.
Can I limit what my agent is allowed to do with the NanoData API?
Yes. You choose which operations the agent may call. You might allow market sentiment and leaderboard reads while blocking trade placement and copy-trading, so the agent can research without moving funds, with every call logged by your own instance.
Is there a NanoData MCP server?
You don't need an MCP server to give your agent the NanoData API. Jentic connects it directly from the API Directory: import it, store the token once, and your agent calls the trading, leaderboard, and market operations. Operations are discovered on demand, so nothing extra loads into the agent's context.
What are the rate limits for the NanoData API?
The OpenAPI spec does not define rate limits. Check the NanoData documentation for any current limits before running high-volume trading or market-data operations.
What can the NanoData API do?
It places and manages exchange trades, copies other traders, reads open positions and market sentiment, returns leaderboard data, and creates Stripe checkout sessions for subscription payments.
How do I read market sentiment through Jentic?
Search Jentic by intent, for example 'get market sentiment', and Jentic returns the matching NanoData operation with its input schema. Your agent calls it and reads back the current sentiment. To run it on your own infrastructure, install Jentic One from its GitHub repo.
Know of an official OpenAPI document? Contribute it →
For Agents
Place and manage crypto exchange trades, copy other traders, read open positions and market sentiment, query leaderboards, and start checkout sessions. Operations authenticate with an HTTP Bearer token (a JWT), aside from a Stripe webhook callback.
Use for: Place a trade on a connected exchange, Start copy-trading a selected trader, List the current open positions, Get the latest market sentiment reading
Not supported: Does not custody funds or settle exchange withdrawals. Use the NanoData API for trade placement, copy-trading, market sentiment, leaderboards, and checkout sessions only.
The NanoData API powers a crypto copy-trading and market-analytics platform. It places and manages exchange trades, copies other traders, reads open positions and market sentiment, returns leaderboard data, and creates Stripe checkout sessions for subscription payments.