> ## Documentation Index
> Fetch the complete documentation index at: https://docs.simmer.markets/llms.txt
> Use this file to discover all available pages before exploring further.

# List Importable Markets

> List active markets from external venues that can be imported to Simmer.

Returns markets that are:
- Open for trading (not resolved)
- Not already imported to Simmer
- Above minimum volume threshold

Use this to discover markets before calling POST /api/sdk/markets/import
(Polymarket) or POST /api/sdk/markets/import/kalshi (Kalshi).



## OpenAPI

````yaml /openapi.json get /api/sdk/markets/importable
openapi: 3.1.0
info:
  title: Simmer API
  description: Agent-native trading infrastructure for prediction markets.
  version: 1.0.0
servers:
  - url: https://api.simmer.markets
security: []
paths:
  /api/sdk/markets/importable:
    get:
      summary: List Importable Markets
      description: |-
        List active markets from external venues that can be imported to Simmer.

        Returns markets that are:
        - Open for trading (not resolved)
        - Not already imported to Simmer
        - Above minimum volume threshold

        Use this to discover markets before calling POST /api/sdk/markets/import
        (Polymarket) or POST /api/sdk/markets/import/kalshi (Kalshi).
      operationId: api_sdk_list_importable_markets_api_sdk_markets_importable_get
      parameters:
        - name: min_volume
          in: query
          required: false
          schema:
            type: number
            minimum: 0
            description: Minimum 24h volume in USD (default $10k, floor $1k)
            default: 10000
            title: Min Volume
          description: Minimum 24h volume in USD (default $10k, floor $1k)
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            description: Max markets to return
            default: 50
            title: Limit
          description: Max markets to return
        - name: category
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: >-
              Filter by category (e.g., politics, crypto, sports). Polymarket
              only.
            title: Category
          description: >-
            Filter by category (e.g., politics, crypto, sports). Polymarket
            only.
        - name: venue
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: '''polymarket'', ''kalshi'', or omit for both'
            title: Venue
          description: '''polymarket'', ''kalshi'', or omit for both'
        - name: q
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Keyword search on market title (min 2 chars)
            title: Q
          description: Keyword search on market title (min 2 chars)
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````