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. |
-(NSURLSessionTask*) instrumentGetWithSymbol: (NSString*) symbol
filter: (NSString*) filter
columns: (NSString*) columns
count: (NSNumber*) count
start: (NSNumber*) start
reverse: (NSNumber*) reverse
startTime: (NSDate*) startTime
endTime: (NSDate*) endTime
completionHandler: (void (^)(NSArray<SWGInstrument>* output, NSError* error)) handler;
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\"}
.
NSString* symbol = @"symbol_example"; // 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`. (optional)
NSString* filter = @"filter_example"; // 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](https://www.bitmex.com/app/restAPI#Timestamp-Filters) for more details. (optional)
NSString* columns = @"columns_example"; // 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. (optional)
NSNumber* count = @100; // Number of results to fetch. (optional) (default to 100)
NSNumber* start = @0; // Starting point for results. (optional) (default to 0)
NSNumber* reverse = @false; // If true, will sort results newest first. (optional) (default to false)
NSDate* startTime = @"2013-10-20T19:20:30+01:00"; // Starting date filter for results. (optional)
NSDate* endTime = @"2013-10-20T19:20:30+01:00"; // Ending date filter for results. (optional)
SWGInstrumentApi*apiInstance = [[SWGInstrumentApi alloc] init];
// Get instruments.
[apiInstance instrumentGetWithSymbol:symbol
filter:filter
columns:columns
count:count
start:start
reverse:reverse
startTime:startTime
endTime:endTime
completionHandler: ^(NSArray<SWGInstrument>* output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error calling SWGInstrumentApi->instrumentGet: %@", error);
}
}];
Name | Type | Description | Notes |
---|---|---|---|
symbol | NSString* | 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`. | [optional] |
filter | NSString* | 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. | [optional] |
columns | NSString* | 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. | [optional] |
count | NSNumber* | Number of results to fetch. | [optional] [default to 100] |
start | NSNumber* | Starting point for results. | [optional] [default to 0] |
reverse | NSNumber* | If true, will sort results newest first. | [optional] [default to false] |
startTime | NSDate* | Starting date filter for results. | [optional] |
endTime | NSDate* | Ending date filter for results. | [optional] |
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]
-(NSURLSessionTask*) instrumentGetActiveWithCompletionHandler:
(void (^)(NSArray<SWGInstrument>* output, NSError* error)) handler;
Get all active instruments and instruments that have expired in <24hrs.
SWGInstrumentApi*apiInstance = [[SWGInstrumentApi alloc] init];
// Get all active instruments and instruments that have expired in <24hrs.
[apiInstance instrumentGetActiveWithCompletionHandler:
^(NSArray<SWGInstrument>* output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error calling SWGInstrumentApi->instrumentGetActive: %@", error);
}
}];
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]
-(NSURLSessionTask*) instrumentGetActiveAndIndicesWithCompletionHandler:
(void (^)(NSArray<SWGInstrument>* output, NSError* error)) handler;
Helper method. Gets all active instruments and all indices. This is a join of the result of /indices and /active.
SWGInstrumentApi*apiInstance = [[SWGInstrumentApi alloc] init];
// Helper method. Gets all active instruments and all indices. This is a join of the result of /indices and /active.
[apiInstance instrumentGetActiveAndIndicesWithCompletionHandler:
^(NSArray<SWGInstrument>* output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error calling SWGInstrumentApi->instrumentGetActiveAndIndices: %@", error);
}
}];
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]
-(NSURLSessionTask*) instrumentGetActiveIntervalsWithCompletionHandler:
(void (^)(SWGInstrumentInterval* output, NSError* error)) handler;
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.
SWGInstrumentApi*apiInstance = [[SWGInstrumentApi alloc] init];
// Return all active contract series and interval pairs.
[apiInstance instrumentGetActiveIntervalsWithCompletionHandler:
^(SWGInstrumentInterval* output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error calling SWGInstrumentApi->instrumentGetActiveIntervals: %@", error);
}
}];
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]
-(NSURLSessionTask*) instrumentGetCompositeIndexWithAccount: (NSNumber*) account
symbol: (NSString*) symbol
filter: (NSString*) filter
columns: (NSString*) columns
count: (NSNumber*) count
start: (NSNumber*) start
reverse: (NSNumber*) reverse
startTime: (NSDate*) startTime
endTime: (NSDate*) endTime
completionHandler: (void (^)(NSArray<SWGIndexComposite>* output, NSError* error)) handler;
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.
NSNumber* account = @1.2; // (optional)
NSString* symbol = @".XBT"; // The composite index symbol. (optional) (default to .XBT)
NSString* filter = @"filter_example"; // 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](https://www.bitmex.com/app/restAPI#Timestamp-Filters) for more details. (optional)
NSString* columns = @"columns_example"; // 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. (optional)
NSNumber* count = @100; // Number of results to fetch. (optional) (default to 100)
NSNumber* start = @0; // Starting point for results. (optional) (default to 0)
NSNumber* reverse = @false; // If true, will sort results newest first. (optional) (default to false)
NSDate* startTime = @"2013-10-20T19:20:30+01:00"; // Starting date filter for results. (optional)
NSDate* endTime = @"2013-10-20T19:20:30+01:00"; // Ending date filter for results. (optional)
SWGInstrumentApi*apiInstance = [[SWGInstrumentApi alloc] init];
// Show constituent parts of an index.
[apiInstance instrumentGetCompositeIndexWithAccount:account
symbol:symbol
filter:filter
columns:columns
count:count
start:start
reverse:reverse
startTime:startTime
endTime:endTime
completionHandler: ^(NSArray<SWGIndexComposite>* output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error calling SWGInstrumentApi->instrumentGetCompositeIndex: %@", error);
}
}];
Name | Type | Description | Notes |
---|---|---|---|
account | NSNumber* | [optional] | |
symbol | NSString* | The composite index symbol. | [optional] [default to .XBT] |
filter | NSString* | 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. | [optional] |
columns | NSString* | 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. | [optional] |
count | NSNumber* | Number of results to fetch. | [optional] [default to 100] |
start | NSNumber* | Starting point for results. | [optional] [default to 0] |
reverse | NSNumber* | If true, will sort results newest first. | [optional] [default to false] |
startTime | NSDate* | Starting date filter for results. | [optional] |
endTime | NSDate* | Ending date filter for results. | [optional] |
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]
-(NSURLSessionTask*) instrumentGetIndicesWithCompletionHandler:
(void (^)(NSArray<SWGInstrument>* output, NSError* error)) handler;
Get all price indices.
SWGInstrumentApi*apiInstance = [[SWGInstrumentApi alloc] init];
// Get all price indices.
[apiInstance instrumentGetIndicesWithCompletionHandler:
^(NSArray<SWGInstrument>* output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error calling SWGInstrumentApi->instrumentGetIndices: %@", error);
}
}];
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]