For Agents
Programmatically create new autofollow strategy, get autofollow strategies list. Covers 67 operations with apiKey authentication.
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Tradematic Cloud API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with Tradematic Cloud API API.
Create new autofollow strategy
Get autofollow strategies list
Update autofollow strategy
Send a new signal for autofollow strategy
GET STARTED
Use for: I need to new autofollow strategy, I want to autofollow strategies list, Search for autofollow strategy by id, Find all autofollow strategy
Not supported: Does not handle payments, communications, or crm — use for developer tools only.
Jentic publishes the only available OpenAPI document for Tradematic Cloud API, keeping it validated and agent-ready.
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 use Tradematic Cloud API Sign up at [tradematic.cloud](https://tradematic.cloud). After signing up, you will rece. The API exposes 67 endpoints secured with apiKey authentication.
Monitor Tradematic Cloud API operational status and events
Patterns agents use Tradematic Cloud API API for, with concrete tasks.
★ Developer Tools Operations
Use the Tradematic Cloud API to perform developer tools operations programmatically. The API provides 67 endpoints covering core functionality including create new autofollow strategy, get autofollow strategies list, get autofollow strategy by id.
Call POST /autofollow/strategies to create new autofollow strategy
Automated Status API Management
Automate status api operations by combining multiple Tradematic Cloud API endpoints. Agents can get autofollow strategies list and then get autofollow strategy by id in a single workflow.
Call GET /autofollow/strategies to get autofollow strategies list, then verify the result
AI Agent Integration via Jentic
AI agents discover and call Tradematic Cloud API endpoints through Jentic without managing credentials directly. An agent searches for the required operation by intent, receives the matching endpoint schema, and executes the call with Jentic-managed authentication. This eliminates the need to read API documentation or handle apiKey tokens manually.
Search Jentic for 'create new autofollow strategy', load the operation schema, and execute with Jentic-managed credentials
67 endpoints — overview tradematic cloud is a trading infrastructure for building investment services.
METHOD
PATH
DESCRIPTION
/autofollow/strategies
Create new autofollow strategy
/autofollow/strategies
Get autofollow strategies list
/autofollow/strategies/{strategyid}
Get autofollow strategy by ID
/autofollow/strategies/{strategyid}
Update autofollow strategy
/autofollow/strategies/{strategyid}/content
Update rules for strategy that was created with strategy builder
/autofollow/strategies/{strategyid}/positions
Get positions for strategy
/autofollow/strategies/{strategyid}/signals
Send a new signal for autofollow strategy
/autofollow/strategies/{strategyid}/signals
Get trading signals for strategy
/autofollow/strategies
Create new autofollow strategy
/autofollow/strategies
Get autofollow strategies list
/autofollow/strategies/{strategyid}
Get autofollow strategy by ID
/autofollow/strategies/{strategyid}
Update autofollow strategy
/autofollow/strategies/{strategyid}/content
Update rules for strategy that was created with strategy builder
Three things that make agents converge on Jentic-routed access.
Credential isolation
Tradematic Cloud API apiKey credentials are stored encrypted in the Jentic vault (MAXsystem). Agents receive scoped access tokens — raw secrets never enter the agent context.
Intent-based discovery
Agents search by intent (e.g., 'create new autofollow strategy') and Jentic returns the matching Tradematic Cloud API operation with its input schema, so the agent can call the right endpoint without browsing docs.
Time to first call
Direct Tradematic Cloud API integration: 1-3 days for auth handling, response parsing, and error cases. Through Jentic: under 1 hour — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Github
Alternative developer tools API
Choose Github when you need a different approach to developer tools operations
Gitlab
Alternative developer tools API
Choose Gitlab when you need a different approach to developer tools operations
Specific to using Tradematic Cloud API API through Jentic.
What authentication does the Tradematic Cloud API use?
The Tradematic Cloud API uses an API key passed in the `X-API-Key` header. Through Jentic, these credentials are stored encrypted in the MAXsystem vault and injected at execution time, so raw secrets never enter the agent context.
Can I create new autofollow strategy with the Tradematic Cloud API?
Yes. Use the POST /autofollow/strategies endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the Tradematic Cloud API?
Rate limits are not specified in the OpenAPI spec. Check the vendor documentation for current limits. Through Jentic, rate limiting is handled automatically with retry logic built into the execution layer.
How do I create new autofollow strategy through Jentic?
Install the Jentic SDK with pip install jentic, authenticate at https://app.jentic.com/sign-up, then search for 'create new autofollow strategy'. Jentic returns the matching Tradematic Cloud API operation with its input schema. Load the schema and execute the call — credentials are injected automatically.
How many endpoints does the Tradematic Cloud API have?
The Tradematic Cloud API exposes 67 endpoints covering status api, client api, autofollow api operations.
/autofollow/strategies/{strategyid}/positions
Get positions for strategy
/autofollow/strategies/{strategyid}/signals
Send a new signal for autofollow strategy
/autofollow/strategies/{strategyid}/signals
Get trading signals for strategy