Developer docs

Polymarket US integration

Polymarket US only.

Updated June 2026 44 actions available

Provider
polymarket
Category
Other
Setup
User-supplied API key
Actions
44 available

Quick start

Call Polymarket US from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Polymarket US's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.

// In your generated app's worker handler:
const composio = composioClient(env);

const result = await composio.execute(
  "POLYMARKET_ACTION_NAME",
  { /* action parameters — see Actions section below */ }
);

return new Response(JSON.stringify(result), {
  headers: { "Content-Type": "application/json" }
});

Replace ACTION_NAME with one of the slugs listed in the Actions section below. The composio client handles auth + rate limits automatically — no API key is exposed to user code.

Setup

End-users supply their own Polymarket US API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.

Available actions

44 actions exposed via the Polymarket US integration. Each maps to a callable slug — pass it to composio.execute(...) in your worker code.

Show all 44 actions
  • POLYMARKET_GET_MARKET_BOOK
  • POLYMARKET_GET_MARKET_BY_ID
  • POLYMARKET_GET_MARKET_BY_SLUG
  • POLYMARKET_GET_MARKET_SETTLEMENT
  • POLYMARKET_GET_MARKETS_FOR_SUBJECT
  • POLYMARKET_GET_MARKETS_FOR_SUBJECT_BY_SLUG
  • POLYMARKET_GET_OPEN_ORDERS
  • POLYMARKET_GET_ORDER
  • POLYMARKET_GET_SERIES_BY_ID
  • POLYMARKET_GET_SPORT_BY_SLUG
  • POLYMARKET_GET_SUBJECT_BY_ID
  • POLYMARKET_GET_SUBJECT_BY_SLUG
  • POLYMARKET_GET_TAG_BY_ID
  • POLYMARKET_GET_TAG_BY_SLUG
  • POLYMARKET_GET_USER_POSITIONS
  • POLYMARKET_LIST_EVENTS
  • POLYMARKET_LIST_EVENTS_FOR_LEAGUE
  • POLYMARKET_LIST_EVENTS_FOR_SERIES
  • POLYMARKET_LIST_EVENTS_FOR_SPORT
  • POLYMARKET_LIST_FEATURED_TAGS
  • POLYMARKET_LIST_LEAGUES
  • POLYMARKET_LIST_MARKETS
  • POLYMARKET_LIST_SERIES
  • POLYMARKET_LIST_SPORTS
  • POLYMARKET_LIST_SPORTS_TEAMS
  • POLYMARKET_LIST_SPORTS_TEAMS_FOR_PROVIDER
  • POLYMARKET_LIST_SUBJECTS
  • POLYMARKET_LIST_TAGS
  • POLYMARKET_MODIFY_MULTIPLE_ORDERS
  • POLYMARKET_MODIFY_ORDER
  • POLYMARKET_PREVIEW_ORDER
  • POLYMARKET_SEARCH_MARKETS_AND_EVENTS

Build with Polymarket US

Open OverSkill, describe what you want to build, and reference Polymarket US in your prompt — the AI will wire up the integration automatically.