Skip to main content
GET
/
v2
/
strategies
/
{strategyId}
curl --request GET \
  --url 'https://api.glider.fi/v2/strategies/01JWZEE2MF30KVRMRX53N88VA4' \
  --header 'x-api-key: gldr_sk_your_api_key'
{
  "success": true,
  "data": {
    "strategyId": "01JWZEE2MF30KVRMRX53N88VA4",
    "name": "Balanced Growth",
    "description": "Multi-chain balanced allocation strategy",
    "allocation": {
      "assets": [
        { "assetId": "eip155:1/erc20:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "weight": "60" },
        { "assetId": "eip155:1/erc20:0xdac17f958d2ee523a2206206994597c13d831ec7", "weight": "40" }
      ]
    },
    "schedule": {
      "type": "interval",
      "frequency": "daily"
    },
    "preferences": {
      "slippageBps": 300,
      "thresholdUsd": "5.00"
    },
    "isPublic": false,
    "createdAt": "2026-03-31T12:00:00.000Z",
    "version": 3
  }
}
Returns a single strategy belonging to the authenticated tenant, including its allocation, rebalance schedule, swap preferences, and version number.
  • Auth: x-api-key header (required)
  • Scope: strategies:read
Allocation asset IDs are returned in CAIP-19 format. Schedule and preferences are pulled from the tenant execution config and are omitted from the response when not configured.
strategyId
string
required
Strategy identifier.
Common error responses:
  • 400 when the path parameter is invalid
  • 401 when x-api-key header is missing or the key is invalid
  • 403 when the API key lacks the strategies:read scope
  • 404 when the strategy does not exist or does not belong to the tenant
  • 500 on unexpected server errors
curl --request GET \
  --url 'https://api.glider.fi/v2/strategies/01JWZEE2MF30KVRMRX53N88VA4' \
  --header 'x-api-key: gldr_sk_your_api_key'
{
  "success": true,
  "data": {
    "strategyId": "01JWZEE2MF30KVRMRX53N88VA4",
    "name": "Balanced Growth",
    "description": "Multi-chain balanced allocation strategy",
    "allocation": {
      "assets": [
        { "assetId": "eip155:1/erc20:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "weight": "60" },
        { "assetId": "eip155:1/erc20:0xdac17f958d2ee523a2206206994597c13d831ec7", "weight": "40" }
      ]
    },
    "schedule": {
      "type": "interval",
      "frequency": "daily"
    },
    "preferences": {
      "slippageBps": 300,
      "thresholdUsd": "5.00"
    },
    "isPublic": false,
    "createdAt": "2026-03-31T12:00:00.000Z",
    "version": 3
  }
}