Stryke Docs
HomeGitHubSocials
  • ⚑Introducing Stryke
  • πŸ”Products Overview
    • Product Overview (CLAMM)
      • For Option Traders
      • For Liquidity Providers
  • 🌚Tokenomics
    • SYK Token
    • xSYK Token
    • Reward Gauges
    • Protocol Fees
  • πŸšΆβ€β™‚οΈUI Walkthroughs
    • CLAMM Walkthrough
      • Connect Wallet
      • Navigate Markets
      • Trade Options
      • Limit Exercise
      • Provide Liquidity
      • Reward Gauges
  • ⛓️Developers
    • Contracts
      • LP Management
        • Mint a Position
        • Burn a Position
        • Reserve Liquidity
        • Withdraw Reserved Liquidity
      • Trading
        • Mint Option
        • Exercise Option
    • APIs
      • xSYK
      • CLAMM
        • Trading
          • Purchase
          • Exercise
        • LP management
        • Option markets
        • Strikes chain
    • Deployed Addresses
      • CLAMM
      • Tokens & Others
      • Gauges
    • Bug Bounty Program
  • πŸ“šREFERENCES
    • Glossary
    • Audits
    • Partners
    • Media Kit
Powered by GitBook
LogoLogo

Β© 2024 Stryke

On this page

Was this helpful?

  1. Developers
  2. APIs

xSYK

PreviousAPIsNextCLAMM

Last updated 1 year ago

Was this helpful?

Vested Positions

View xSYK vested and staked positions including total allocation and pending positions

read more about staking SYK and xSYK here: xSYK Token

⛓️
get
Path parameters
accountstringRequired

Address of user

Query parameters
chainIdnumber Β· enumRequired

Chain ID of the network

Possible values:
Responses
200Success
application/json
get
GET /xsyk/vest-positions/{account} HTTP/1.1
Host: api.stryke.xyz
Accept: */*
200Success
[
  {
    "totalXSykAllocated": "text",
    "totalSykPending": "text",
    "positions": [
      {
        "account": "text",
        "duration": 1,
        "xSykAmount": "text",
        "sykAmount": "text",
        "vestIndex": "text",
        "blockTimestamp": 1,
        "transactionHash": "text"
      }
    ]
  }
]
  • Vested Positions
  • GET/xsyk/vest-positions/{account}