curl --request GET \
--url https://api.aisa.one/apis/v1/polymarket/markets \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.aisa.one/apis/v1/polymarket/markets"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.aisa.one/apis/v1/polymarket/markets', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.aisa.one/apis/v1/polymarket/markets",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.aisa.one/apis/v1/polymarket/markets"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.aisa.one/apis/v1/polymarket/markets")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.aisa.one/apis/v1/polymarket/markets")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body[
{
"id": "540817",
"question": "New Rihanna Album before GTA VI?",
"slug": "new-rhianna-album-before-gta-vi-926",
"conditionId": "0x1fad72fae204143ff1c3035e99e7c0f65ea8d5cd9bd1070987bd1a3316f772be",
"clobTokenIds": "<string>",
"outcomes": "<string>",
"outcomePrices": "<string>",
"active": true,
"closed": true,
"liquidity": "<string>",
"volume": "<string>",
"volumeNum": 123,
"bestBid": 123,
"bestAsk": 123,
"startDate": "2023-11-07T05:31:56Z",
"endDate": "2023-11-07T05:31:56Z",
"image": "<string>",
"icon": "<string>",
"description": "<string>"
}
]Get Polymarket Markets
List individual Polymarket prediction markets — one binary question each — with live pricing.
curl --request GET \
--url https://api.aisa.one/apis/v1/polymarket/markets \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.aisa.one/apis/v1/polymarket/markets"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.aisa.one/apis/v1/polymarket/markets', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.aisa.one/apis/v1/polymarket/markets",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.aisa.one/apis/v1/polymarket/markets"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.aisa.one/apis/v1/polymarket/markets")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.aisa.one/apis/v1/polymarket/markets")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body[
{
"id": "540817",
"question": "New Rihanna Album before GTA VI?",
"slug": "new-rhianna-album-before-gta-vi-926",
"conditionId": "0x1fad72fae204143ff1c3035e99e7c0f65ea8d5cd9bd1070987bd1a3316f772be",
"clobTokenIds": "<string>",
"outcomes": "<string>",
"outcomePrices": "<string>",
"active": true,
"closed": true,
"liquidity": "<string>",
"volume": "<string>",
"volumeNum": 123,
"bestBid": 123,
"bestAsk": 123,
"startDate": "2023-11-07T05:31:56Z",
"endDate": "2023-11-07T05:31:56Z",
"image": "<string>",
"icon": "<string>",
"description": "<string>"
}
]slug, condition_ids, clob_token_ids, tag_id, closed, and the volume_num_* / start_date_* / end_date_* ranges.
Returns a top-level array of market objects. The probability signal is outcomes paired with outcomePrices, quoted against bestBid / bestAsk; conditionId and clobTokenIds are the on-chain identifiers you need to join to other Polymarket data.
For the topic that groups several related questions together, use get_polymarket_events. For the same kind of question on the US-regulated Kalshi exchange, use get_kalshi_markets.Authorizations
Your AIsa API key as a Bearer token.
Query Parameters
Maximum number of markets to return.
x >= 020
Number of markets to skip for offset-based pagination.
x >= 00
Comma-separated list of fields to order by.
"volume"
Sort ascending when true.
false
Filter by one or more Polymarket market IDs.
[540817]
Filter by one or more market slugs.
["new-rhianna-album-before-gta-vi-926"]
Filter by one or more CLOB token IDs.
Filter by one or more market condition IDs.
[
"0x1fad72fae204143ff1c3035e99e7c0f65ea8d5cd9bd1070987bd1a3316f772be"
]
Minimum total volume.
1000
Maximum total volume.
1000000
Filter markets starting after this ISO timestamp.
"2025-01-01T00:00:00Z"
Filter markets starting before this ISO timestamp.
"2026-01-01T00:00:00Z"
Filter markets ending after this ISO timestamp.
"2025-01-01T00:00:00Z"
Filter markets ending before this ISO timestamp.
"2026-01-01T00:00:00Z"
Filter by tag ID.
1
Filter by whether the market is closed.
false
Include tag metadata when true.
true
Response
Top-level array of Polymarket market objects
"540817"
"New Rihanna Album before GTA VI?"
"new-rhianna-album-before-gta-vi-926"
"0x1fad72fae204143ff1c3035e99e7c0f65ea8d5cd9bd1070987bd1a3316f772be"
Polymarket CLOB token IDs. The upstream Gamma API may encode this as a JSON string.
Market outcomes. The upstream Gamma API may encode this as a JSON string.
Outcome prices. The upstream Gamma API may encode this as a JSON string.