Skip to main content

Overview

drive.markets provides distributed order routing for Polymarket’s CLOB API, delivering low-latency execution through globally distributed routing paths.

Authentication

All API endpoints require authentication using Polymarket’s standard headers:
  • POLY-API-KEY: Your API key
  • POLY-SIGNATURE: Request signature (signed with your private key)
  • POLY-TIMESTAMP: Unix timestamp of the request
  • POLY-NONCE: Unique nonce for the request
These headers are automatically handled when using the Polymarket SDK.

Using with Polymarket SDK

The API is compatible with Polymarket’s SDK. Simply specify https://poly.drive.markets in the host parameter:

Direct API Usage

If you’re not using the SDK, you’ll need to sign the authentication headers manually:

Supported Endpoints

  • POST /order - Place a single order
  • POST /orders - Place multiple orders
  • DELETE /order - Cancel a single order
  • DELETE /orders - Cancel multiple orders
  • DELETE /cancel-all - Cancel all open orders
  • DELETE /cancel-market-orders - Cancel orders from a specific market

Next Steps

API Reference

Explore the complete API documentation

Polymarket Docs

Reference Polymarket’s Order API documentation
All orders are routed via best effort basis, with the lowest latency path being automatically selected for optimal performance.