For Agents
Issue, transfer, and burn NTP1 tokens on the Neblio blockchain, look up addresses and transactions, and broadcast signed transactions.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Neblio REST API Suite, 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://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | 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 Neblio REST API Suite API.
Issue new NTP1 tokens with /ntp1/issue and a custom symbol and metadata
Send and burn NTP1 tokens through /ntp1/sendtoken and /ntp1/burntoken
Look up token metadata and stakeholders via /ntp1/tokenmetadata and /ntp1/stakeholders
GET STARTED
Use for: I need to issue a new NTP1 token with a custom symbol, Send NTP1 tokens from one Neblio address to another, Burn a quantity of an existing NTP1 token, Look up the token id for a given token symbol
Not supported: Does not custody private keys, host wallets, or provide fiat on-ramps — use for Neblio NTP1 and chain-data operations only.
Jentic publishes the only available OpenAPI specification for Neblio REST API Suite, keeping it validated and agent-ready. The Neblio REST API Suite exposes 50 endpoints for interacting with the Neblio blockchain and NTP1 tokens, covering token issuance, transfer and burn, address and transaction lookup, raw transaction broadcast, block exploration, and node-level controls. The suite combines NTP1-specific helpers under /ntp1 with a Bitcoin-style /ins explorer interface, allowing developers to issue custom assets, query holders, and broadcast signed transactions against ntp1node.nebl.io.
Inspect Neblio addresses, balances, and transactions through the /ins explorer endpoints
Broadcast signed raw transactions with /ntp1/broadcast and /ins/tx/send
Resolve token symbols to token ids using /ntp1/tokenid/{tokensymbol}
Patterns agents use Neblio REST API Suite API for, with concrete tasks.
★ Custom Asset Issuance on Neblio
A token issuer mints a new NTP1 asset by submitting an issuance request with the desired symbol, supply, divisibility, and metadata. The Neblio REST API builds the unsigned transaction, the issuer signs it locally, then broadcasts it via /ntp1/broadcast. The new token id is then queryable via /ntp1/tokenid for downstream wallets and exchanges.
POST /ntp1/issue with symbol, amount, issueAddress, and metadata, sign the returned transaction hex, then POST /ntp1/broadcast with the signed transaction.
Token Holder Snapshot for Airdrops
A project team takes a snapshot of all addresses holding a specific NTP1 token before an airdrop. The /ntp1/stakeholders/{tokenid} endpoint returns the current holder set with balances, which the team feeds into their airdrop transaction builder. Combined with /ntp1/sendtoken, the airdrop is executed in batches without needing to run a full Neblio node.
GET /ntp1/stakeholders/{tokenid} for the target token id and feed the holder list into a /ntp1/sendtoken loop.
Block Explorer Backend
A wallet or explorer UI uses the /ins endpoints to render block, transaction, and address detail pages without running a Neblio full node locally. /ins/block, /ins/tx, and /ins/addr return Bitcoin-style JSON suitable for direct rendering. This avoids the operational overhead of running and indexing a full chain while keeping latency low.
GET /ins/addr/{address} for a wallet address and render the balance and transaction history in the explorer UI.
Agent-Driven Token Operations
An AI agent that manages a token treasury uses Jentic to discover Neblio operations and execute mint, transfer, or burn calls under policy. The agent searches for the right operation, loads the input schema, and submits the request while Jentic handles the rpcAuth basic credentials so the agent never sees the node password.
Search Jentic for 'send NTP1 tokens between addresses', load the schema for /ntp1/sendtoken, and execute it with the source, destination, token id, and amount.
50 endpoints — jentic publishes the only available openapi specification for neblio rest api suite, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/ntp1/issue
Issue a new NTP1 token
/ntp1/sendtoken
Send NTP1 tokens between addresses
/ntp1/burntoken
Burn NTP1 tokens
/ntp1/broadcast
Broadcast a signed transaction
/ntp1/tokenid/{tokensymbol}
Resolve token symbol to id
/ntp1/tokenmetadata/{tokenid}
Get token metadata
/ntp1/stakeholders/{tokenid}
List token holders
/ntp1/addressinfo/{address}
Get address balance and transactions
/ntp1/issue
Issue a new NTP1 token
/ntp1/sendtoken
Send NTP1 tokens between addresses
/ntp1/burntoken
Burn NTP1 tokens
/ntp1/broadcast
Broadcast a signed transaction
/ntp1/tokenid/{tokensymbol}
Resolve token symbol to id
Three things that make agents converge on Jentic-routed access.
Credential isolation
The rpcAuth basic-auth username and password are stored encrypted in the Jentic vault. Agents receive a scoped session at execution time so the raw node credentials never enter agent context.
Intent-based discovery
Agents search by intent such as 'issue an NTP1 token' and Jentic returns the matching Neblio operation with its input schema, removing the need to read Neblio's documentation site.
Time to first call
Direct Neblio integration: 1-3 days for endpoint wiring, raw transaction signing helpers, and error handling. Through Jentic: under an hour for a token operation with managed credentials.
Alternatives and complements available in the Jentic catalogue.
Specific to using Neblio REST API Suite API through Jentic.
Why is there no official OpenAPI spec for Neblio REST API Suite?
The Neblio team publishes the REST API as written documentation rather than a machine-readable OpenAPI file. Jentic generates and maintains this spec so that AI agents and developers can call Neblio REST API Suite via structured tooling. It is validated against the live ntp1node.nebl.io endpoints and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the Neblio REST API use?
The spec declares an HTTP basic security scheme named rpcAuth for node-level RPC endpoints; the public NTP1 and explorer paths under ntp1node.nebl.io are read-only and do not require credentials. Through Jentic the basic-auth username and password are stored encrypted in the vault and injected on calls that need rpcAuth.
Can I issue a new NTP1 token with this API?
Yes. POST /ntp1/issue with the token symbol, amount, issuing address, and any metadata. The endpoint returns an unsigned transaction hex that you sign locally with the issuing address's private key, then POST to /ntp1/broadcast to publish it to the Neblio network.
What are the rate limits for the Neblio REST API?
Neblio's public node ntp1node.nebl.io does not publish numeric rate limits in the OpenAPI spec; the operator generally permits sustained low single-digit requests per second per IP. Run your own Neblio node for production-scale throughput.
How do I look up NTP1 token holders through Jentic?
Run pip install jentic, then search for 'list NTP1 token holders', load the schema for GET /ntp1/stakeholders/{tokenid}, and execute it with the token id. Jentic returns the holder list with balances ready for downstream airdrop or analytics processing.
Does the Neblio REST API sign transactions for me?
No. The /ntp1/issue, /ntp1/sendtoken, and /ntp1/burntoken endpoints return unsigned transaction hex; you must sign with your private key locally and call /ntp1/broadcast to submit. Private keys never leave the caller.
/ntp1/tokenmetadata/{tokenid}
Get token metadata
/ntp1/stakeholders/{tokenid}
List token holders
/ntp1/addressinfo/{address}
Get address balance and transactions