For Agents
Read CryptoMarket prices and order books, place and cancel spot trading orders, and move balances between trading and wallet accounts.
Get started with CryptoMarket API in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"place a spot trading order"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with CryptoMarket API API.
Look up the live ticker, last price, and 24-hour stats for a trading pair
Read the order book at a specified depth for any supported symbol
Place a limit or market order on a trading pair and receive the resulting order ID
Cancel a specific open order or cancel every open order on a symbol at once
GET STARTED
Use for: I need to place a limit buy order for BTC priced at 60000 USDT, Cancel every open order on the ETH-USDT trading pair, Retrieve the current order book for the BTC-USDT pair to depth 50, List all my filled trades on CryptoMarket in the last 24 hours
Not supported: Does not provide fiat on-ramp KYC, custody insurance, or derivatives trading — use for spot trading, market data, and wallet transfers on CryptoMarket only.
Jentic publishes the only available OpenAPI document for CryptoMarket API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for CryptoMarket API, keeping it validated and agent-ready. CryptoMarket (CryptoMKT) is a Latin American cryptocurrency exchange whose REST API covers public market data, authenticated trading, and wallet operations. The catalogued slice exposes 65 endpoints split across public price and order book feeds, spot trading order management, and wallet transfers and balances. Both HTTP Basic and Bearer authentication are accepted on private endpoints.
List historical trades for an account filtered by symbol and time range
Transfer balance between the trading account and the spot wallet account
Withdraw a cryptocurrency to an external address with optional payment ID for chains that require it
Patterns agents use CryptoMarket API API for, with concrete tasks.
★ Algorithmic Spot Trading
Run an automated trading strategy on CryptoMarket by polling the public price feed for signals and placing limit orders through the trading endpoints. The API exposes order placement, cancellation, and trade history endpoints needed to manage open positions, and the same Bearer token works for both reads and writes. This replaces hand-rolled HMAC signing for teams that prefer token-based auth.
Call POST /spot/order with symbol=BTCUSDT, type=limit, side=buy, quantity=0.01, and price=60000 to place a buy.
Wallet Transfer Automation
Move funds between the spot wallet and trading account ahead of campaign trades or scheduled withdrawals. The agent calls the wallet transfer endpoint with a currency and amount, and follows up with a withdrawal endpoint when funds need to leave CryptoMarket. This avoids manual treasury work for trading desks that rebalance frequently.
Call the wallet transfer endpoint with source=spot, destination=trading, currency=USDT, and amount=500 to fund a strategy.
Market Data Aggregator
Feed CryptoMarket prices into a multi-exchange dashboard or analytics product without authentication. The /public/* endpoints return tickers, order books, and historical price data over HTTPS without keys, so an aggregator can pull CryptoMarket alongside other exchanges. Combined with rate-limited polling, this powers Latin America-focused price comparison sites and arbitrage screens.
Call GET /public/price/ticker to retrieve the latest ticker for every supported symbol and persist into the time-series store.
AI Agent Trading Assistant
An AI agent acting as a trading copilot can read prices, propose trades, and execute them on CryptoMarket through Jentic. The agent searches for the right /spot/order or /public/* operation, loads its schema, and executes against the auth credentials in the vault. Both Basic and Bearer credentials are scoped at the Jentic layer, so the same agent flow works for either auth model.
Search Jentic for 'place a spot trading order', load the CryptoMarket order operation, and execute it with the user's symbol, side, and quantity.
65 endpoints — jentic publishes the only available openapi specification for cryptomarket api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/public/symbol
List all tradable symbols
/public/price/ticker
Get the latest ticker for every symbol
/public/price/ticker/{symbol}
Get the latest ticker for a single symbol
/public/price/history
Retrieve historical price data
/public/currency
List all supported currencies
/public/symbol
List all tradable symbols
/public/price/ticker
Get the latest ticker for every symbol
/public/price/ticker/{symbol}
Get the latest ticker for a single symbol
/public/price/history
Retrieve historical price data
/public/currency
List all supported currencies
Three things that make agents converge on Jentic-routed access.
Credential isolation
CryptoMarket Basic and Bearer credentials are stored encrypted in the Jentic vault (MAXsystem) under separate scopes for trading and wallet operations. Agents receive scoped tokens and never see raw API keys.
Intent-based discovery
Agents search by intent (for example 'place a spot order' or 'transfer wallet balance') and Jentic returns the matching CryptoMarket operation with its input schema across the 65 endpoints.
Time to first call
Direct CryptoMarket integration: 2-3 days for dual auth schemes, signing, and per-endpoint rate handling. Through Jentic: under 1 hour — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Binance API
Global cryptocurrency exchange with deeper liquidity and a broader product surface
Choose Binance when the strategy needs deeper order books or futures and options markets that CryptoMarket does not offer.
Kraken API
US/EU-focused cryptocurrency exchange with margin and staking
Choose Kraken when the user is in the US or EU and the strategy needs margin, staking, or fiat banking rails.
CoinGecko API
Cross-exchange market data and pricing aggregator
Use CoinGecko alongside CryptoMarket when the agent needs cross-exchange reference prices for fair-value or arbitrage logic.
Specific to using CryptoMarket API API through Jentic.
Why is there no official OpenAPI spec for CryptoMarket API?
CryptoMarket does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call CryptoMarket API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the CryptoMarket API use?
CryptoMarket private endpoints accept either HTTP Basic or HTTP Bearer authentication, with separate schemes for the wallet and trading sub-systems. Public endpoints under /public/* require no authentication. Through Jentic the credentials live in the vault and never enter the agent context.
Can I place spot trading orders with the CryptoMarket API?
Yes. Authenticate against the trading scheme and call POST /spot/order with symbol, type, side, quantity, and price for limit orders. The response returns the order ID, which can be used with the cancel endpoint.
What are the rate limits for the CryptoMarket API?
CryptoMarket applies per-IP and per-key request limits that vary by endpoint group; trading endpoints are tighter than public market data. The exchange's documentation lists current per-endpoint allowances; treat 429 responses as a signal to back off.
How do I cancel all open orders on a symbol through Jentic?
Search Jentic for 'cancel all open spot orders' and execute the loaded CryptoMarket operation with the symbol parameter. Jentic supplies the trading credentials from the vault and returns the cancellation summary.
Is the CryptoMarket API free?
API access is free; CryptoMarket charges trading fees per filled order and standard withdrawal fees. Fee schedules are published at https://www.cryptomkt.com/fees.
How do I move balance between the spot wallet and trading account?
Use the wallet transfer endpoint with source=spot, destination=trading, the currency code, and the amount. The transfer is atomic and the trading endpoints reflect the new balance on the next call.