All URIs are relative to https://localhost/api/v1
Method | HTTP request | Description |
---|---|---|
InstrumentGet | Get /instrument | Get instruments. |
InstrumentGetActive | Get /instrument/active | Get all active instruments and instruments that have expired in <24hrs. |
InstrumentGetActiveAndIndices | Get /instrument/activeAndIndices | Helper method. Gets all active instruments and all indices. This is a join of the result of /indices and /active. |
InstrumentGetActiveIntervals | Get /instrument/activeIntervals | Return all active contract series and interval pairs. |
InstrumentGetCompositeIndex | Get /instrument/compositeIndex | Show constituent parts of an index. |
InstrumentGetIndices | Get /instrument/indices | Get all price indices. |
[]Instrument InstrumentGet(ctx, optional) Get instruments.
This returns all instruments and indices, including those that have settled or are unlisted. Use this endpoint if you want to query for individual instruments or use a complex filter. Use /instrument/active
to return active instruments, or use a filter like {\"state\": \"Open\"}
.
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
optional | *InstrumentGetOpts | optional parameters | nil if no parameters |
Optional parameters are passed through a pointer to a InstrumentGetOpts struct
Name | Type | Description | Notes |
---|---|---|---|
symbol | optional.String | Instrument symbol. Send a bare series (e.g. XBU) to get data for the nearest expiring contract in that series. You can also send a timeframe, e.g. `XBU:monthly`. Timeframes are `daily`, `weekly`, `monthly`, `quarterly`, and `biquarterly`. | |
filter | optional.String | Generic table filter. Send JSON key/value pairs, such as `{"key": "value"}`. You can key on individual fields, and do more advanced querying on timestamps. See the Timestamp Docs for more details. | |
columns | optional.String | Array of column names to fetch. If omitted, will return all columns. Note that this method will always return item keys, even when not specified, so you may receive more columns that you expect. | |
count | optional.Float32 | Number of results to fetch. | [default to 100] |
start | optional.Float32 | Starting point for results. | [default to 0] |
reverse | optional.Bool | If true, will sort results newest first. | [default to false] |
startTime | optional.Time | Starting date filter for results. | |
endTime | optional.Time | Ending date filter for results. |
No authorization required
- Content-Type: application/json, application/x-www-form-urlencoded
- Accept: application/json, application/xml, text/xml, application/javascript, text/javascript
[Back to top] [Back to API list] [Back to Model list] [Back to README]
[]Instrument InstrumentGetActive(ctx, ) Get all active instruments and instruments that have expired in <24hrs.
This endpoint does not need any parameter.
No authorization required
- Content-Type: application/json, application/x-www-form-urlencoded
- Accept: application/json, application/xml, text/xml, application/javascript, text/javascript
[Back to top] [Back to API list] [Back to Model list] [Back to README]
[]Instrument InstrumentGetActiveAndIndices(ctx, ) Helper method. Gets all active instruments and all indices. This is a join of the result of /indices and /active.
This endpoint does not need any parameter.
No authorization required
- Content-Type: application/json, application/x-www-form-urlencoded
- Accept: application/json, application/xml, text/xml, application/javascript, text/javascript
[Back to top] [Back to API list] [Back to Model list] [Back to README]
InstrumentInterval InstrumentGetActiveIntervals(ctx, ) Return all active contract series and interval pairs.
This endpoint is useful for determining which pairs are live. It returns two arrays of strings. The first is intervals, such as [\"XBT:perpetual\", \"XBT:monthly\", \"XBT:quarterly\", \"ETH:monthly\", ...]
. These identifiers are usable in any query's symbol
param. The second array is the current resolution of these intervals. Results are mapped at the same index.
This endpoint does not need any parameter.
No authorization required
- Content-Type: application/json, application/x-www-form-urlencoded
- Accept: application/json, application/xml, text/xml, application/javascript, text/javascript
[Back to top] [Back to API list] [Back to Model list] [Back to README]
[]IndexComposite InstrumentGetCompositeIndex(ctx, optional) Show constituent parts of an index.
Composite indices are built from multiple external price sources. Use this endpoint to get the underlying prices of an index. For example, send a symbol
of .XBT
to get the ticks and weights of the constituent exchanges that build the ".XBT" index. A tick with reference \"BMI\"
and weight null
is the composite index tick.
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
optional | *InstrumentGetCompositeIndexOpts | optional parameters | nil if no parameters |
Optional parameters are passed through a pointer to a InstrumentGetCompositeIndexOpts struct
Name | Type | Description | Notes |
---|---|---|---|
account | optional.Float64 | ||
symbol | optional.String | The composite index symbol. | [default to .XBT] |
filter | optional.String | Generic table filter. Send JSON key/value pairs, such as `{"key": "value"}`. You can key on individual fields, and do more advanced querying on timestamps. See the Timestamp Docs for more details. | |
columns | optional.String | Array of column names to fetch. If omitted, will return all columns. Note that this method will always return item keys, even when not specified, so you may receive more columns that you expect. | |
count | optional.Float32 | Number of results to fetch. | [default to 100] |
start | optional.Float32 | Starting point for results. | [default to 0] |
reverse | optional.Bool | If true, will sort results newest first. | [default to false] |
startTime | optional.Time | Starting date filter for results. | |
endTime | optional.Time | Ending date filter for results. |
No authorization required
- Content-Type: application/json, application/x-www-form-urlencoded
- Accept: application/json, application/xml, text/xml, application/javascript, text/javascript
[Back to top] [Back to API list] [Back to Model list] [Back to README]
[]Instrument InstrumentGetIndices(ctx, ) Get all price indices.
This endpoint does not need any parameter.
No authorization required
- Content-Type: application/json, application/x-www-form-urlencoded
- Accept: application/json, application/xml, text/xml, application/javascript, text/javascript
[Back to top] [Back to API list] [Back to Model list] [Back to README]