Skip to main content
GET
/
platforms
List platforms
curl --request GET \
  --url https://api-v2.polyrouter.io/platforms \
  --header 'X-API-Key: <api-key>'
import requests

url = "https://api-v2.polyrouter.io/platforms"

headers = {"X-API-Key": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};

fetch('https://api-v2.polyrouter.io/platforms', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api-v2.polyrouter.io/platforms"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("X-API-Key", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
{
  "platforms": [
    {
      "id": "polymarket",
      "name": "Polymarket",
      "status": "available",
      "health": {
        "status": "pass",
        "last_check": "2025-01-01T00:00:00.000Z",
        "response_time_ms": 150
      },
      "endpoints": [
        {
          "name": "markets",
          "available": true
        }
      ],
      "features": {
        "orderbook": true,
        "trades": true,
        "historical_data": true,
        "user_profiles": true
      }
    }
  ],
  "meta": {
    "request_time": 123,
    "total": 123
  }
}

Authorizations

X-API-Key
string
header
required

API key for authentication

Response

200 - application/json

List of platforms

platforms
object[]
required
meta
object
required