# Tradematic Cloud API **Provider:** Tradematic Cloud **Category:** finance **Base URL:** `https://api.tradematic.com` **Auth:** api-key — `X-API-Key: YOUR_API_KEY` **Rate Limit:** Based on plan **Free Tier:** No **Pricing:** Enterprise / contact sales (subscription) **Docs:** https://api.tradematic.com ## Description Overview Tradematic Cloud is a trading infrastructure for building investment services. It’s a trading engine + API + ready-made adapters to stock and forex brokers, crypto exchanges, and market data providers. You can use it as a cloud API, or you can deploy it on your servers. How to ## Endpoints | Method | Endpoint | Description | |--------|----------|-------------| | GET | `https://api.tradematic.com/autofollow/strategies` | Get autofollow strategies list | | POST | `https://api.tradematic.com/autofollow/strategies` | Create new autofollow strategy | | GET | `https://api.tradematic.com/autofollow/strategies/{strategyid}` | Get autofollow strategy by ID | | PUT | `https://api.tradematic.com/autofollow/strategies/{strategyid}` | Update autofollow strategy | | PUT | `https://api.tradematic.com/autofollow/strategies/{strategyid}/content` | Update rules for strategy that was created with strategy builder | | GET | `https://api.tradematic.com/autofollow/strategies/{strategyid}/positions` | Get positions for strategy | | GET | `https://api.tradematic.com/autofollow/strategies/{strategyid}/signals` | Get trading signals for strategy | | POST | `https://api.tradematic.com/autofollow/strategies/{strategyid}/signals` | Send a new signal for autofollow strategy | ## Authentication API key in the request header (X-API-Key) ``` X-API-Key: YOUR_API_KEY ``` ## Sample Request ```bash curl -X GET 'https://api.tradematic.com/autofollow/strategies' \ -H 'X-API-Key: YOUR_API_KEY' ``` ## Sample Response ```json {} ``` ## Pricing Details Paid algorithmic trading platform. Pricing on request for cloud-hosted trading. --- *Source: [API Map](https://apimap.dev/apis/tradematic-cloud/) — CC BY 4.0*