GET api/Chat?stockCode={stockCode}&from={from}&to={to}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
stockCode

string

Required

from

date

Required

to

date

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ApiStockMinutes
NameDescriptionTypeAdditional information
code

string

None.

date

date

None.

tick

string

None.

open

integer

None.

high

integer

None.

low

integer

None.

close

integer

None.

volume

integer

None.

value

integer

None.

vpdiff

decimal number

None.

vplast

decimal number

None.

vp

decimal number

None.

buy

integer

None.

sell

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "code": "sample string 1",
    "date": "2026-04-03T07:45:46.7847711+09:00",
    "tick": "sample string 3",
    "open": 4,
    "high": 5,
    "low": 6,
    "close": 7,
    "volume": 8,
    "value": 9,
    "vpdiff": 10.1,
    "vplast": 11.1,
    "vp": 12.1,
    "buy": 13,
    "sell": 14
  },
  {
    "code": "sample string 1",
    "date": "2026-04-03T07:45:46.7847711+09:00",
    "tick": "sample string 3",
    "open": 4,
    "high": 5,
    "low": 6,
    "close": 7,
    "volume": 8,
    "value": 9,
    "vpdiff": 10.1,
    "vplast": 11.1,
    "vp": 12.1,
    "buy": 13,
    "sell": 14
  }
]

application/xml, text/xml

Sample:
<ArrayOfApiStockMinutes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FinUp.Stock.Api.Models.Chat">
  <ApiStockMinutes>
    <buy>13</buy>
    <close>7</close>
    <code>sample string 1</code>
    <date>2026-04-03T07:45:46.7847711+09:00</date>
    <high>5</high>
    <low>6</low>
    <open>4</open>
    <sell>14</sell>
    <tick>sample string 3</tick>
    <value>9</value>
    <volume>8</volume>
    <vp>12.1</vp>
    <vpdiff>10.1</vpdiff>
    <vplast>11.1</vplast>
  </ApiStockMinutes>
  <ApiStockMinutes>
    <buy>13</buy>
    <close>7</close>
    <code>sample string 1</code>
    <date>2026-04-03T07:45:46.7847711+09:00</date>
    <high>5</high>
    <low>6</low>
    <open>4</open>
    <sell>14</sell>
    <tick>sample string 3</tick>
    <value>9</value>
    <volume>8</volume>
    <vp>12.1</vp>
    <vpdiff>10.1</vpdiff>
    <vplast>11.1</vplast>
  </ApiStockMinutes>
</ArrayOfApiStockMinutes>