Deltalytix
Sign in

Deltalytix API

Overview

What the Deltalytix Public API offers, the base URL, versioning, and shared conventions.

Overview

The Deltalytix Public API lets you read and write trading data, manage broker connections, import files, and compute performance metrics programmatically. It is designed for personal scripts, third-party integrations, and first-party OAuth apps.

Base URL

All REST endpoints are served from:

https://www.deltalytix.app

Examples in this documentation use that host. Relative paths such as /api/v1/trades are always rooted at the same origin.

Versioning

The current stable surface is API v1, mounted under /api/v1/*. Breaking changes ship under a new major version path. Additive fields may appear within v1 without a version bump.

Machine-readable discovery:

  • OpenAPI 3.1: /openapi.json
  • OAuth metadata: /.well-known/openid-configuration
  • Protected resource metadata: /.well-known/oauth-protected-resource

What you can do

AreaCapabilities
ProfileRead the authenticated user (GET /api/v1/me)
TradesList and create trades
AccountsList accounts, optionally with performance metrics
ConnectionsList connections, create IBKR Flex connections, trigger sync
ImportsUpload CSV/XLSX files with AI or platform-specific parsers
MetricsSummary statistics, equity curves, per-account metrics

Authentication

Every /api/v1/* request requires a Bearer token:

Authorization: Bearer dltx_at_…

Tokens are either:

  • OAuth access tokens from the authorization code flow (dltx_at_…)
  • Personal access tokens created in the dashboard (dltx_pat_…)

See Authentication for scopes, OAuth, and PATs.

Shared conventions

Pagination

List endpoints accept:

ParameterDefaultMaxDescription
limit100500Page size
cursor——Opaque cursor from a previous response

Responses use:

{
  "data": [],
  "nextCursor": null
}

When nextCursor is a string, pass it as cursor on the next request. When it is null, you have reached the last page.

Dates

Timestamps and date filters are ISO 8601 strings (for example 2026-03-15T14:30:00.000Z).

Errors

Failed requests return:

{
  "error": "machine_code",
  "message": "Human-readable explanation",
  "details": {}
}

See Errors for status codes and OAuth-specific error shapes.

Quick start

curl https://www.deltalytix.app/api/v1/me \
  -H "Authorization: Bearer dltx_pat_YOUR_TOKEN"
const res = await fetch("https://www.deltalytix.app/api/v1/me", {
  headers: {
    Authorization: "Bearer dltx_pat_YOUR_TOKEN",
  },
});
const me = await res.json();

Next: Authentication.

Footer

Deltalytix

Advanced analytics for modern traders.

GitHubYouTubeDiscord

Product

  • Features
  • Pricing
  • Prop Firms Catalogue
  • Teams
  • Support
  • Documentation

Company

  • About

Legal

  • Privacy Policy
  • Terms of Service
  • Disclaimers
© 2026 Deltalytix. All rights reserved.
Trading in futures and forex markets involves significant risks and is not suitable for all investors. An investor could potentially lose all or a portion of their initial investment. Risk capital is money that can be lost without jeopardizing one's financial security or lifestyle. Only risk capital should be used for trading, and only those with sufficient risk capital should consider trading. Past performance is not necessarily indicative of future results.
Hypothetical performance results have many inherent limitations, some of which are described below. No representation is being made that any account will or is likely to achieve profits or losses similar to those shown; in fact, there are frequently sharp differences between hypothetical performance results and the actual results subsequently achieved by any particular trading program. One of the limitations of hypothetical performance results is that they are generally prepared with the benefit of hindsight. In addition, hypothetical trading does not involve financial risk, and no hypothetical trading record can completely account for the impact of financial risk in actual trading. For example, the ability to withstand losses or to adhere to a particular trading program in spite of trading losses are material points which can also adversely affect actual trading results. There are numerous other factors related to the markets in general or to the implementation of any specific trading program which cannot be fully accounted for in the preparation of hypothetical performance results and all of which can adversely affect actual trading results.