List event series
curl --request GET \
--url https://relay.bayse.markets/v1/pm/events/series{
"series": [
{
"id": "f1e2d3c4-b5a6-7890-abcd-ef1234567890",
"slug": "crypto-btc-1h",
"displayName": "Bitcoin Hourly Markets",
"description": "Bitcoin price prediction markets that run every hour.",
"category": "CRYPTO",
"intervalType": "HOURLY",
"assetSymbol": "BTC",
"automationType": "CRYPTO_PRICE_UP_DOWN_HOURLY"
},
{
"id": "e2d3c4b5-a697-8901-bcde-f12345678901",
"slug": "crypto-eth-1d",
"displayName": "Ethereum Daily Markets",
"description": "Ethereum price prediction markets that run daily.",
"category": "CRYPTO",
"intervalType": "DAILY",
"assetSymbol": "ETH",
"automationType": "CRYPTO_PRICE_UP_DOWN_DAILY"
}
],
"pagination": {
"page": 1,
"size": 20,
"lastPage": 1,
"totalCount": 12
}
}
Trading
List event series
Get a paginated list of event series
GET
/
v1
/
pm
/
events
/
series
List event series
curl --request GET \
--url https://relay.bayse.markets/v1/pm/events/series{
"series": [
{
"id": "f1e2d3c4-b5a6-7890-abcd-ef1234567890",
"slug": "crypto-btc-1h",
"displayName": "Bitcoin Hourly Markets",
"description": "Bitcoin price prediction markets that run every hour.",
"category": "CRYPTO",
"intervalType": "HOURLY",
"assetSymbol": "BTC",
"automationType": "CRYPTO_PRICE_UP_DOWN_HOURLY"
},
{
"id": "e2d3c4b5-a697-8901-bcde-f12345678901",
"slug": "crypto-eth-1d",
"displayName": "Ethereum Daily Markets",
"description": "Ethereum price prediction markets that run daily.",
"category": "CRYPTO",
"intervalType": "DAILY",
"assetSymbol": "ETH",
"automationType": "CRYPTO_PRICE_UP_DOWN_DAILY"
}
],
"pagination": {
"page": 1,
"size": 20,
"lastPage": 1,
"totalCount": 12
}
}
Documentation Index
Fetch the complete documentation index at: https://docs.bayse.markets/llms.txt
Use this file to discover all available pages before exploring further.
Authentication
Public — no authentication required.Query parameters
Page number.
Results per page (max 100).
Example request
curl "https://relay.bayse.markets/v1/pm/events/series?page=1&size=20"
Response
List of event series objects.
Show series fields
Show series fields
UUID of the series.
Unique slug identifier (e.g.
crypto-btc-1h).Human-readable name for the series.
Description of the series.
Category (e.g.
CRYPTO).Time interval between events:
FIFTEEN_MINUTE, HOURLY, SIX_HOURLY, or DAILY.Asset symbol (e.g.
BTC, ETH, SOL).Automation type identifier.
URL to the series icon.
{
"series": [
{
"id": "f1e2d3c4-b5a6-7890-abcd-ef1234567890",
"slug": "crypto-btc-1h",
"displayName": "Bitcoin Hourly Markets",
"description": "Bitcoin price prediction markets that run every hour.",
"category": "CRYPTO",
"intervalType": "HOURLY",
"assetSymbol": "BTC",
"automationType": "CRYPTO_PRICE_UP_DOWN_HOURLY"
},
{
"id": "e2d3c4b5-a697-8901-bcde-f12345678901",
"slug": "crypto-eth-1d",
"displayName": "Ethereum Daily Markets",
"description": "Ethereum price prediction markets that run daily.",
"category": "CRYPTO",
"intervalType": "DAILY",
"assetSymbol": "ETH",
"automationType": "CRYPTO_PRICE_UP_DOWN_DAILY"
}
],
"pagination": {
"page": 1,
"size": 20,
"lastPage": 1,
"totalCount": 12
}
}
⌘I