📶
Ticker
  • Getting Started
    • Charting APIs
      • ⭐Line Chart
      • ⭐Candlestick Chart
      • ⭐Volume Chart
    • Metadata APIs
      • ⭐Liquidity Pool List
      • Liquidity Pool Data
      • ⭐ERC-20 Metadata
      • ERC-721 Metadata
      • ERC-1151 Metadata
    • Transactions APIs
      • ⭐Address Internal Txns
      • ⭐Address ERC-20 Txns
      • Address ERC-721 Txns
      • Address ERC-1155 Txns
      • ⭐ERC-20 Recent Txns
      • ERC-721 Recent Txns
      • ERC-1155 Recent Txns
      • Internal Txn Details
      • ERC-20 Txn Details
      • ERC-721 Txn Details
      • ERC-1155 Txn Details
    • Holders APIs
      • ⭐Address ERC-20 List
      • Address ERC-721 List
      • Address ERC-1155 List
      • ⭐ERC-20 Holders List
      • ERC-721 Holders List
      • ERC-1151 Holders List
    • Portfolio APIs
      • ⭐Wallet ERC-20 Balance
      • ⭐Wallet ERC-20 Balance Chart
      • ⭐Wallet Aggregate ERC-20 Balance Chart
      • ⭐Wallet Aggregate ERC-20 Balance
Powered by GitBook
On this page
  1. Getting Started
  2. Charting APIs

Line Chart

PreviousCharting APIsNextCandlestick Chart

Last updated 2 years ago

⭐

4 Hour Line Chart

get
Query parameters
lpAddressstringRequired
Header parameters
apiKeystringRequired
Responses
200
OK
application/json
get
GET /v1/chart/line/4-hour HTTP/1.1
Host: api.ticker.network
apiKey: text
Accept: */*
200

OK

{
  "result": "text"
}

1 Day Line Chart

get
Query parameters
lpAddressstringRequired
Header parameters
apiKeystringRequired
Responses
200
OK
application/json
get
GET /v1/chart/line/1-day HTTP/1.1
Host: api.ticker.network
apiKey: text
Accept: */*
200

OK

{
  "result": "text"
}

3 Day Line Chart

get
Query parameters
lpAddressstringRequired
Header parameters
apiKeystringRequired
Responses
200
OK
application/json
get
GET /v1/chart/line/3-day HTTP/1.1
Host: api.ticker.network
apiKey: text
Accept: */*
200

OK

{
  "result": "text"
}

1 Week Line Chart

get
Query parameters
lpAddressstringRequired
Header parameters
apiKeystringRequired
Responses
200
OK
application/json
get
GET /v1/chart/line/1-week HTTP/1.1
Host: api.ticker.network
apiKey: text
Accept: */*
200

OK

{
  "result": "text"
}

1 Month Line Chart

get
Query parameters
lpAddressstringRequired
Header parameters
apiKeystringRequired
Responses
200
OK
application/json
get
GET /v1/chart/line/1-month HTTP/1.1
Host: api.ticker.network
apiKey: text
Accept: */*
200

OK

{
  "result": "text"
}

3 Month Line Chart

get
Query parameters
lpAddressstringRequired
Header parameters
apiKeystringRequired
Responses
200
OK
application/json
get
GET /v1/chart/line/3-month HTTP/1.1
Host: api.ticker.network
apiKey: text
Accept: */*
200

OK

{
  "result": "text"
}

6 Month Line Chart

get
Query parameters
lpAddressstringRequired
Header parameters
apiKeystringRequired
Responses
200
OK
application/json
get
GET /v1/chart/line/6-month HTTP/1.1
Host: api.ticker.network
apiKey: text
Accept: */*
200

OK

{
  "result": "text"
}

1 Year Line Chart

get
Query parameters
lpAddressstringRequired
Header parameters
apiKeystringRequired
Responses
200
OK
application/json
get
GET /v1/chart/line/1-year HTTP/1.1
Host: api.ticker.network
apiKey: text
Accept: */*
200

OK

{
  "result": "text"
}

All Line Chart

get
Query parameters
lpAddressstringRequired
Header parameters
apiKeystringRequired
Responses
200
OK
application/json
get
GET /v1/chart/line/all HTTP/1.1
Host: api.ticker.network
apiKey: text
Accept: */*
200

OK

{
  "result": "text"
}

Custom Line Chart

get
Query parameters
lpAddressstringRequired
startTimestring · date-timeRequired

Start time for the query, in ISO 8601 format (e.g., 2022-01-01T00:00:00Z)

endTimestring · date-timeRequired

End time for the query, in ISO 8601 format (e.g., 2022-01-01T00:00:00Z)

bucketCountintegerRequired

Number of buckets to divide the data into

Header parameters
apiKeystringRequired
Responses
200
OK
application/json
get
GET /v1/chart/line/custom HTTP/1.1
Host: api.ticker.network
apiKey: text
Accept: */*
200

OK

{
  "result": "text"
}
  • GET4 Hour Line Chart
  • GET1 Day Line Chart
  • GET3 Day Line Chart
  • GET1 Week Line Chart
  • GET1 Month Line Chart
  • GET3 Month Line Chart
  • GET6 Month Line Chart
  • GET1 Year Line Chart
  • GETAll Line Chart
  • GETCustom Line Chart