Skip to main content
GET
/
market-pages
/
by-path
Get market page by path
curl --request GET \
  --url https://api.limitless.exchange/market-pages/by-path
{
  "id": "<string>",
  "name": "<string>",
  "slug": "<string>",
  "fullPath": "<string>",
  "baseFilter": {},
  "filterGroups": [
    {
      "name": "<string>",
      "slug": "<string>",
      "allowMultiple": true,
      "presentation": "<string>",
      "options": [
        {
          "label": "<string>",
          "value": "<string>",
          "metadata": {}
        }
      ]
    }
  ],
  "metadata": {},
  "breadcrumb": [
    {
      "name": "<string>",
      "slug": "<string>",
      "path": "<string>"
    }
  ],
  "description": "<string>"
}
Supports home page resolution via path=/ or empty path=. If no Home page is configured, returns a synthetic page (id __home__) with an empty base filter.May return a 301 redirect if the path has been moved.

Query Parameters

path
string
required

URL path to resolve (e.g., "/sports/football")

Example:

"/sports/football"

Response

Market page resolved successfully

id
string
required

Unique identifier of the market page

name
string
required

Display name of the market page

slug
string
required

URL slug of the market page

fullPath
string
required

Full URL path to this market page

baseFilter
object
required

Base filter configuration for the page

filterGroups
object[]
required

Available filter groups for the page

metadata
object
required

Additional metadata for the page

breadcrumb
object[]
required

Breadcrumb trail to this page

description
string | null

Description of the market page