Poloniex API

Cryptocurrency / API Key Intermediate HTTPS
65 C
Measured Score 0 50 100 Speed 24/30 Consistency 17/20 Security 20/20 Browser access 0/15 Transparency 4/15 TESTED 2026-08-10

Overview

Poloniex is a US-based digital asset exchange offering API access to real-time market data, order management, and account features. It supports both public endpoints for market data and authenticated endpoints for trading operations. Beginners can explore market data without authentication, but trading requires an API key.

Beginner Tip

You can access public market data like ticker prices and order books on Poloniex without an API key. Only create an API key when you are ready to implement actual trading functionality.

Measurement Record

What actually happened when we called this API from our own infrastructure. Every value below was recorded by the request, not copied from the provider's documentation.

Request
GET https://api.poloniex.com/markets/BTC_USDT/price
Result
HTTP 200 · application/json · 104 bytes
Response time
46 ms (median of 3) · fastest 43 ms
Transport
TLSv1.3 · TLS_AES_128_GCM_SHA256 · certificate issued by Amazon
Browser CORS
No Access-Control-Allow-Origin header — call it from a server, not the browser
Recorded
2026-08-10

Fields Returned

Top-level fields present in the response we captured, with the type and value we actually received.

Field Type Value received
symbol string BTC_USDT
price string 64028.38
dailyChange string -0.0178
time integer 1786391378075
ts integer 1786391378087

Captured Response

Captured from a real request to https://api.poloniex.com/markets/BTC_USDT/price on 2026-08-10. Long arrays and nested objects are truncated to keep the shape readable.

JSON Response · Captured
{
  "symbol": "BTC_USDT",
  "price": "64028.38",
  "dailyChange": "-0.0178",
  "time": 1786391378075,
  "ts": 1786391378087
}

Field Reference

symbol Trading pair name (e.g., BTC_USDT)
price Current market price of the trading pair
dailyChange Price change percentage in the last 24 hours

Implementation Example

Calls a real endpoint of this API. Replace any placeholder credentials with your own key.

Request
const url = "https://docs.poloniex.com/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
  headers: {
  "X-API-Key": "YOUR_API_KEY"
  }
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data);

What Can You Build?

Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.

How This API Fails

We deliberately sent this API a broken request and recorded exactly what came back on 2026-08-10. Knowing the shape of an error before you hit it makes error handling much easier to write.

HTTP 404 Requesting a path that does not exist application/json
{
  "code": 404,
  "message": "Resources do not exist [404 NOT_FOUND \"No static resource markets/BTC_USDT/price/apisscore-nonexistent-path.\"]"
}

Common Errors & Troubleshooting

Generated guidance based on this API's documentation, not observed by us. Treat it as a starting point and check against the provider's own error reference.

403 Forbidden on authenticated endpoints API key does not have the required permissions enabled
Log in to your Poloniex account, edit your API key settings, and enable the necessary permissions (e.g., trading)
Invalid signature error Incorrect HMAC signature generation for authenticated requests
Follow the Poloniex signature documentation carefully, ensuring the correct timestamp and string-to-sign format is used
400 Bad Request with invalid symbol Using a deprecated or incorrect market symbol format
Fetch the list of markets from /markets endpoint to get current valid symbol names

Measured Score Breakdown

Live HTTP request to the API endpoint

Speed 24/30
Consistency 17/20
Security 20/20
Browser access 0/15
Transparency 4/15
Endpoint Response Time 46ms

Fully tested on Aug 10, 2026

Technical Specifications

Auth API Key
HTTPS REQUIRED
CORS UNKNOWN
Category Cryptocurrency
Difficulty Intermediate
Endpoint last called: 2026-08-10

Related Tags

Similar APIs

View All →