snaptrade-python-sdk 11.0.144__py3-none-any.whl → 11.0.146__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- snaptrade_client/__init__.py +1 -1
- snaptrade_client/api_client.py +1 -1
- snaptrade_client/configuration.py +1 -1
- snaptrade_client/model/cryptocurrency_increment.py +25 -0
- snaptrade_client/model/cryptocurrency_increment.pyi +25 -0
- snaptrade_client/model/cryptocurrency_increment_nullable.py +50 -0
- snaptrade_client/model/cryptocurrency_increment_nullable.pyi +50 -0
- snaptrade_client/model/cryptocurrency_pair.py +17 -2
- snaptrade_client/model/cryptocurrency_pair.pyi +17 -2
- snaptrade_client/models/__init__.py +2 -0
- snaptrade_client/paths/accounts/get.py +2 -2
- snaptrade_client/paths/accounts/get.pyi +2 -2
- snaptrade_client/paths/accounts_account_id/get.py +2 -2
- snaptrade_client/paths/accounts_account_id/get.pyi +2 -2
- snaptrade_client/paths/accounts_account_id_balances/get.py +2 -2
- snaptrade_client/paths/accounts_account_id_balances/get.pyi +2 -2
- snaptrade_client/paths/accounts_account_id_holdings/get.py +2 -2
- snaptrade_client/paths/accounts_account_id_holdings/get.pyi +2 -2
- snaptrade_client/paths/accounts_account_id_options/get.py +2 -2
- snaptrade_client/paths/accounts_account_id_options/get.pyi +2 -2
- snaptrade_client/paths/accounts_account_id_orders/get.py +2 -2
- snaptrade_client/paths/accounts_account_id_orders/get.pyi +2 -2
- snaptrade_client/paths/accounts_account_id_positions/get.py +2 -2
- snaptrade_client/paths/accounts_account_id_positions/get.pyi +2 -2
- snaptrade_client/paths/authorizations_authorization_id_refresh/post.py +2 -2
- snaptrade_client/paths/authorizations_authorization_id_refresh/post.pyi +2 -2
- snaptrade_client/type/cryptocurrency_increment.py +19 -0
- snaptrade_client/type/cryptocurrency_increment_nullable.py +19 -0
- snaptrade_client/type/cryptocurrency_pair.py +3 -0
- {snaptrade_python_sdk-11.0.144.dist-info → snaptrade_python_sdk-11.0.146.dist-info}/METADATA +25 -11
- {snaptrade_python_sdk-11.0.144.dist-info → snaptrade_python_sdk-11.0.146.dist-info}/RECORD +33 -27
- {snaptrade_python_sdk-11.0.144.dist-info → snaptrade_python_sdk-11.0.146.dist-info}/LICENSE +0 -0
- {snaptrade_python_sdk-11.0.144.dist-info → snaptrade_python_sdk-11.0.146.dist-info}/WHEEL +0 -0
snaptrade_client/__init__.py
CHANGED
snaptrade_client/api_client.py
CHANGED
|
@@ -1155,7 +1155,7 @@ class ApiClient:
|
|
|
1155
1155
|
self.default_headers[header_name] = header_value
|
|
1156
1156
|
self.cookie = cookie
|
|
1157
1157
|
# Set default User-Agent.
|
|
1158
|
-
self.user_agent = 'Konfig/11.0.
|
|
1158
|
+
self.user_agent = 'Konfig/11.0.146/python'
|
|
1159
1159
|
|
|
1160
1160
|
def __enter__(self):
|
|
1161
1161
|
return self
|
|
@@ -438,7 +438,7 @@ conf = snaptrade_client.Configuration(
|
|
|
438
438
|
"OS: {env}\n"\
|
|
439
439
|
"Python Version: {pyversion}\n"\
|
|
440
440
|
"Version of the API: 1.0.0\n"\
|
|
441
|
-
"SDK Package Version: 11.0.
|
|
441
|
+
"SDK Package Version: 11.0.146".\
|
|
442
442
|
format(env=sys.platform, pyversion=sys.version)
|
|
443
443
|
|
|
444
444
|
def get_host_settings(self):
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
SnapTrade
|
|
5
|
+
|
|
6
|
+
Connect brokerage accounts to your app for live positions and trading
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0.0
|
|
9
|
+
Contact: api@snaptrade.com
|
|
10
|
+
Created by: https://snaptrade.com/
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
from datetime import date, datetime # noqa: F401
|
|
14
|
+
import decimal # noqa: F401
|
|
15
|
+
import functools # noqa: F401
|
|
16
|
+
import io # noqa: F401
|
|
17
|
+
import re # noqa: F401
|
|
18
|
+
import typing # noqa: F401
|
|
19
|
+
import typing_extensions # noqa: F401
|
|
20
|
+
import uuid # noqa: F401
|
|
21
|
+
|
|
22
|
+
import frozendict # noqa: F401
|
|
23
|
+
|
|
24
|
+
from snaptrade_client import schemas # noqa: F401
|
|
25
|
+
CryptocurrencyIncrement = schemas.StrSchema
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
SnapTrade
|
|
5
|
+
|
|
6
|
+
Connect brokerage accounts to your app for live positions and trading
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0.0
|
|
9
|
+
Contact: api@snaptrade.com
|
|
10
|
+
Created by: https://snaptrade.com/
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
from datetime import date, datetime # noqa: F401
|
|
14
|
+
import decimal # noqa: F401
|
|
15
|
+
import functools # noqa: F401
|
|
16
|
+
import io # noqa: F401
|
|
17
|
+
import re # noqa: F401
|
|
18
|
+
import typing # noqa: F401
|
|
19
|
+
import typing_extensions # noqa: F401
|
|
20
|
+
import uuid # noqa: F401
|
|
21
|
+
|
|
22
|
+
import frozendict # noqa: F401
|
|
23
|
+
|
|
24
|
+
from snaptrade_client import schemas # noqa: F401
|
|
25
|
+
CryptocurrencyIncrement = schemas.StrSchema
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
SnapTrade
|
|
5
|
+
|
|
6
|
+
Connect brokerage accounts to your app for live positions and trading
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0.0
|
|
9
|
+
Contact: api@snaptrade.com
|
|
10
|
+
Created by: https://snaptrade.com/
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
from datetime import date, datetime # noqa: F401
|
|
14
|
+
import decimal # noqa: F401
|
|
15
|
+
import functools # noqa: F401
|
|
16
|
+
import io # noqa: F401
|
|
17
|
+
import re # noqa: F401
|
|
18
|
+
import typing # noqa: F401
|
|
19
|
+
import typing_extensions # noqa: F401
|
|
20
|
+
import uuid # noqa: F401
|
|
21
|
+
|
|
22
|
+
import frozendict # noqa: F401
|
|
23
|
+
|
|
24
|
+
from snaptrade_client import schemas # noqa: F401
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
class CryptocurrencyIncrementNullable(
|
|
28
|
+
schemas.StrBase,
|
|
29
|
+
schemas.NoneBase,
|
|
30
|
+
schemas.Schema,
|
|
31
|
+
schemas.NoneStrMixin
|
|
32
|
+
):
|
|
33
|
+
"""
|
|
34
|
+
This class is auto generated by Konfig (https://konfigthis.com)
|
|
35
|
+
|
|
36
|
+
The precision or smallest price incremental step available for this cryptocurrency pair
|
|
37
|
+
|
|
38
|
+
"""
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
def __new__(
|
|
42
|
+
cls,
|
|
43
|
+
*args: typing.Union[None, str, ],
|
|
44
|
+
_configuration: typing.Optional[schemas.Configuration] = None,
|
|
45
|
+
) -> 'CryptocurrencyIncrementNullable':
|
|
46
|
+
return super().__new__(
|
|
47
|
+
cls,
|
|
48
|
+
*args,
|
|
49
|
+
_configuration=_configuration,
|
|
50
|
+
)
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
SnapTrade
|
|
5
|
+
|
|
6
|
+
Connect brokerage accounts to your app for live positions and trading
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0.0
|
|
9
|
+
Contact: api@snaptrade.com
|
|
10
|
+
Created by: https://snaptrade.com/
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
from datetime import date, datetime # noqa: F401
|
|
14
|
+
import decimal # noqa: F401
|
|
15
|
+
import functools # noqa: F401
|
|
16
|
+
import io # noqa: F401
|
|
17
|
+
import re # noqa: F401
|
|
18
|
+
import typing # noqa: F401
|
|
19
|
+
import typing_extensions # noqa: F401
|
|
20
|
+
import uuid # noqa: F401
|
|
21
|
+
|
|
22
|
+
import frozendict # noqa: F401
|
|
23
|
+
|
|
24
|
+
from snaptrade_client import schemas # noqa: F401
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
class CryptocurrencyIncrementNullable(
|
|
28
|
+
schemas.StrBase,
|
|
29
|
+
schemas.NoneBase,
|
|
30
|
+
schemas.Schema,
|
|
31
|
+
schemas.NoneStrMixin
|
|
32
|
+
):
|
|
33
|
+
"""
|
|
34
|
+
This class is auto generated by Konfig (https://konfigthis.com)
|
|
35
|
+
|
|
36
|
+
The precision or smallest price incremental step available for this cryptocurrency pair
|
|
37
|
+
|
|
38
|
+
"""
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
def __new__(
|
|
42
|
+
cls,
|
|
43
|
+
*args: typing.Union[None, str, ],
|
|
44
|
+
_configuration: typing.Optional[schemas.Configuration] = None,
|
|
45
|
+
) -> 'CryptocurrencyIncrementNullable':
|
|
46
|
+
return super().__new__(
|
|
47
|
+
cls,
|
|
48
|
+
*args,
|
|
49
|
+
_configuration=_configuration,
|
|
50
|
+
)
|
|
@@ -44,10 +44,15 @@ class CryptocurrencyPair(
|
|
|
44
44
|
base = schemas.StrSchema
|
|
45
45
|
quote = schemas.StrSchema
|
|
46
46
|
symbol = schemas.StrSchema
|
|
47
|
+
|
|
48
|
+
@staticmethod
|
|
49
|
+
def increment() -> typing.Type['CryptocurrencyIncrementNullable']:
|
|
50
|
+
return CryptocurrencyIncrementNullable
|
|
47
51
|
__annotations__ = {
|
|
48
52
|
"base": base,
|
|
49
53
|
"quote": quote,
|
|
50
54
|
"symbol": symbol,
|
|
55
|
+
"increment": increment,
|
|
51
56
|
}
|
|
52
57
|
additional_properties = schemas.AnyTypeSchema
|
|
53
58
|
|
|
@@ -63,10 +68,13 @@ class CryptocurrencyPair(
|
|
|
63
68
|
@typing.overload
|
|
64
69
|
def __getitem__(self, name: typing_extensions.Literal["symbol"]) -> MetaOapg.properties.symbol: ...
|
|
65
70
|
|
|
71
|
+
@typing.overload
|
|
72
|
+
def __getitem__(self, name: typing_extensions.Literal["increment"]) -> 'CryptocurrencyIncrementNullable': ...
|
|
73
|
+
|
|
66
74
|
@typing.overload
|
|
67
75
|
def __getitem__(self, name: str) -> MetaOapg.additional_properties: ...
|
|
68
76
|
|
|
69
|
-
def __getitem__(self, name: typing.Union[typing_extensions.Literal["quote"], typing_extensions.Literal["base"], typing_extensions.Literal["symbol"], str, ]):
|
|
77
|
+
def __getitem__(self, name: typing.Union[typing_extensions.Literal["quote"], typing_extensions.Literal["base"], typing_extensions.Literal["symbol"], typing_extensions.Literal["increment"], str, ]):
|
|
70
78
|
# dict_instance[name] accessor
|
|
71
79
|
return super().__getitem__(name)
|
|
72
80
|
|
|
@@ -79,10 +87,13 @@ class CryptocurrencyPair(
|
|
|
79
87
|
@typing.overload
|
|
80
88
|
def get_item_oapg(self, name: typing_extensions.Literal["symbol"]) -> typing.Union[MetaOapg.properties.symbol, schemas.Unset]: ...
|
|
81
89
|
|
|
90
|
+
@typing.overload
|
|
91
|
+
def get_item_oapg(self, name: typing_extensions.Literal["increment"]) -> typing.Union['CryptocurrencyIncrementNullable', schemas.Unset]: ...
|
|
92
|
+
|
|
82
93
|
@typing.overload
|
|
83
94
|
def get_item_oapg(self, name: str) -> typing.Union[MetaOapg.additional_properties, schemas.Unset]: ...
|
|
84
95
|
|
|
85
|
-
def get_item_oapg(self, name: typing.Union[typing_extensions.Literal["quote"], typing_extensions.Literal["base"], typing_extensions.Literal["symbol"], str, ]):
|
|
96
|
+
def get_item_oapg(self, name: typing.Union[typing_extensions.Literal["quote"], typing_extensions.Literal["base"], typing_extensions.Literal["symbol"], typing_extensions.Literal["increment"], str, ]):
|
|
86
97
|
return super().get_item_oapg(name)
|
|
87
98
|
|
|
88
99
|
def __new__(
|
|
@@ -91,6 +102,7 @@ class CryptocurrencyPair(
|
|
|
91
102
|
quote: typing.Union[MetaOapg.properties.quote, str, ],
|
|
92
103
|
base: typing.Union[MetaOapg.properties.base, str, ],
|
|
93
104
|
symbol: typing.Union[MetaOapg.properties.symbol, str, schemas.Unset] = schemas.unset,
|
|
105
|
+
increment: typing.Union['CryptocurrencyIncrementNullable', schemas.Unset] = schemas.unset,
|
|
94
106
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
|
95
107
|
**kwargs: typing.Union[MetaOapg.additional_properties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ],
|
|
96
108
|
) -> 'CryptocurrencyPair':
|
|
@@ -100,6 +112,9 @@ class CryptocurrencyPair(
|
|
|
100
112
|
quote=quote,
|
|
101
113
|
base=base,
|
|
102
114
|
symbol=symbol,
|
|
115
|
+
increment=increment,
|
|
103
116
|
_configuration=_configuration,
|
|
104
117
|
**kwargs,
|
|
105
118
|
)
|
|
119
|
+
|
|
120
|
+
from snaptrade_client.model.cryptocurrency_increment_nullable import CryptocurrencyIncrementNullable
|
|
@@ -44,10 +44,15 @@ class CryptocurrencyPair(
|
|
|
44
44
|
base = schemas.StrSchema
|
|
45
45
|
quote = schemas.StrSchema
|
|
46
46
|
symbol = schemas.StrSchema
|
|
47
|
+
|
|
48
|
+
@staticmethod
|
|
49
|
+
def increment() -> typing.Type['CryptocurrencyIncrementNullable']:
|
|
50
|
+
return CryptocurrencyIncrementNullable
|
|
47
51
|
__annotations__ = {
|
|
48
52
|
"base": base,
|
|
49
53
|
"quote": quote,
|
|
50
54
|
"symbol": symbol,
|
|
55
|
+
"increment": increment,
|
|
51
56
|
}
|
|
52
57
|
additional_properties = schemas.AnyTypeSchema
|
|
53
58
|
|
|
@@ -63,10 +68,13 @@ class CryptocurrencyPair(
|
|
|
63
68
|
@typing.overload
|
|
64
69
|
def __getitem__(self, name: typing_extensions.Literal["symbol"]) -> MetaOapg.properties.symbol: ...
|
|
65
70
|
|
|
71
|
+
@typing.overload
|
|
72
|
+
def __getitem__(self, name: typing_extensions.Literal["increment"]) -> 'CryptocurrencyIncrementNullable': ...
|
|
73
|
+
|
|
66
74
|
@typing.overload
|
|
67
75
|
def __getitem__(self, name: str) -> MetaOapg.additional_properties: ...
|
|
68
76
|
|
|
69
|
-
def __getitem__(self, name: typing.Union[typing_extensions.Literal["quote"], typing_extensions.Literal["base"], typing_extensions.Literal["symbol"], str, ]):
|
|
77
|
+
def __getitem__(self, name: typing.Union[typing_extensions.Literal["quote"], typing_extensions.Literal["base"], typing_extensions.Literal["symbol"], typing_extensions.Literal["increment"], str, ]):
|
|
70
78
|
# dict_instance[name] accessor
|
|
71
79
|
return super().__getitem__(name)
|
|
72
80
|
|
|
@@ -79,10 +87,13 @@ class CryptocurrencyPair(
|
|
|
79
87
|
@typing.overload
|
|
80
88
|
def get_item_oapg(self, name: typing_extensions.Literal["symbol"]) -> typing.Union[MetaOapg.properties.symbol, schemas.Unset]: ...
|
|
81
89
|
|
|
90
|
+
@typing.overload
|
|
91
|
+
def get_item_oapg(self, name: typing_extensions.Literal["increment"]) -> typing.Union['CryptocurrencyIncrementNullable', schemas.Unset]: ...
|
|
92
|
+
|
|
82
93
|
@typing.overload
|
|
83
94
|
def get_item_oapg(self, name: str) -> typing.Union[MetaOapg.additional_properties, schemas.Unset]: ...
|
|
84
95
|
|
|
85
|
-
def get_item_oapg(self, name: typing.Union[typing_extensions.Literal["quote"], typing_extensions.Literal["base"], typing_extensions.Literal["symbol"], str, ]):
|
|
96
|
+
def get_item_oapg(self, name: typing.Union[typing_extensions.Literal["quote"], typing_extensions.Literal["base"], typing_extensions.Literal["symbol"], typing_extensions.Literal["increment"], str, ]):
|
|
86
97
|
return super().get_item_oapg(name)
|
|
87
98
|
|
|
88
99
|
def __new__(
|
|
@@ -91,6 +102,7 @@ class CryptocurrencyPair(
|
|
|
91
102
|
quote: typing.Union[MetaOapg.properties.quote, str, ],
|
|
92
103
|
base: typing.Union[MetaOapg.properties.base, str, ],
|
|
93
104
|
symbol: typing.Union[MetaOapg.properties.symbol, str, schemas.Unset] = schemas.unset,
|
|
105
|
+
increment: typing.Union['CryptocurrencyIncrementNullable', schemas.Unset] = schemas.unset,
|
|
94
106
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
|
95
107
|
**kwargs: typing.Union[MetaOapg.additional_properties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ],
|
|
96
108
|
) -> 'CryptocurrencyPair':
|
|
@@ -100,6 +112,9 @@ class CryptocurrencyPair(
|
|
|
100
112
|
quote=quote,
|
|
101
113
|
base=base,
|
|
102
114
|
symbol=symbol,
|
|
115
|
+
increment=increment,
|
|
103
116
|
_configuration=_configuration,
|
|
104
117
|
**kwargs,
|
|
105
118
|
)
|
|
119
|
+
|
|
120
|
+
from snaptrade_client.model.cryptocurrency_increment_nullable import CryptocurrencyIncrementNullable
|
|
@@ -61,6 +61,8 @@ from snaptrade_client.model.crypto_order_preview import CryptoOrderPreview
|
|
|
61
61
|
from snaptrade_client.model.crypto_order_preview_estimated_fee import CryptoOrderPreviewEstimatedFee
|
|
62
62
|
from snaptrade_client.model.crypto_trading_instrument import CryptoTradingInstrument
|
|
63
63
|
from snaptrade_client.model.cryptocurrency_base_symbol import CryptocurrencyBaseSymbol
|
|
64
|
+
from snaptrade_client.model.cryptocurrency_increment import CryptocurrencyIncrement
|
|
65
|
+
from snaptrade_client.model.cryptocurrency_increment_nullable import CryptocurrencyIncrementNullable
|
|
64
66
|
from snaptrade_client.model.cryptocurrency_pair import CryptocurrencyPair
|
|
65
67
|
from snaptrade_client.model.cryptocurrency_pair_quote import CryptocurrencyPairQuote
|
|
66
68
|
from snaptrade_client.model.cryptocurrency_pair_symbol import CryptocurrencyPairSymbol
|
|
@@ -410,7 +410,7 @@ class ListUserAccounts(BaseApi):
|
|
|
410
410
|
ApiResponseForDefault,
|
|
411
411
|
api_client.ApiResponseWithoutDeserialization,
|
|
412
412
|
]:
|
|
413
|
-
""" Returns all brokerage accounts across all connections known to SnapTrade for the authenticated user.
|
|
413
|
+
""" Returns all brokerage accounts across all connections known to SnapTrade for the authenticated user. Check your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing) to see if you have real-time data access: - If you do, this endpoint returns real-time data. - If you don't, the data is cached and refreshed once a day. If you need real-time, use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint. """
|
|
414
414
|
args = self._list_user_accounts_mapped_args(
|
|
415
415
|
query_params=query_params,
|
|
416
416
|
user_id=user_id,
|
|
@@ -455,7 +455,7 @@ class ApiForget(BaseApi):
|
|
|
455
455
|
ApiResponseForDefault,
|
|
456
456
|
api_client.ApiResponseWithoutDeserialization,
|
|
457
457
|
]:
|
|
458
|
-
""" Returns all brokerage accounts across all connections known to SnapTrade for the authenticated user.
|
|
458
|
+
""" Returns all brokerage accounts across all connections known to SnapTrade for the authenticated user. Check your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing) to see if you have real-time data access: - If you do, this endpoint returns real-time data. - If you don't, the data is cached and refreshed once a day. If you need real-time, use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint. """
|
|
459
459
|
args = self._list_user_accounts_mapped_args(
|
|
460
460
|
query_params=query_params,
|
|
461
461
|
user_id=user_id,
|
|
@@ -399,7 +399,7 @@ class ListUserAccounts(BaseApi):
|
|
|
399
399
|
ApiResponseForDefault,
|
|
400
400
|
api_client.ApiResponseWithoutDeserialization,
|
|
401
401
|
]:
|
|
402
|
-
""" Returns all brokerage accounts across all connections known to SnapTrade for the authenticated user.
|
|
402
|
+
""" Returns all brokerage accounts across all connections known to SnapTrade for the authenticated user. Check your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing) to see if you have real-time data access: - If you do, this endpoint returns real-time data. - If you don't, the data is cached and refreshed once a day. If you need real-time, use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint. """
|
|
403
403
|
args = self._list_user_accounts_mapped_args(
|
|
404
404
|
query_params=query_params,
|
|
405
405
|
user_id=user_id,
|
|
@@ -444,7 +444,7 @@ class ApiForget(BaseApi):
|
|
|
444
444
|
ApiResponseForDefault,
|
|
445
445
|
api_client.ApiResponseWithoutDeserialization,
|
|
446
446
|
]:
|
|
447
|
-
""" Returns all brokerage accounts across all connections known to SnapTrade for the authenticated user.
|
|
447
|
+
""" Returns all brokerage accounts across all connections known to SnapTrade for the authenticated user. Check your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing) to see if you have real-time data access: - If you do, this endpoint returns real-time data. - If you don't, the data is cached and refreshed once a day. If you need real-time, use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint. """
|
|
448
448
|
args = self._list_user_accounts_mapped_args(
|
|
449
449
|
query_params=query_params,
|
|
450
450
|
user_id=user_id,
|
|
@@ -454,7 +454,7 @@ class GetUserAccountDetails(BaseApi):
|
|
|
454
454
|
ApiResponseForDefault,
|
|
455
455
|
api_client.ApiResponseWithoutDeserialization,
|
|
456
456
|
]:
|
|
457
|
-
""" Returns account detail known to SnapTrade for the specified account.
|
|
457
|
+
""" Returns account detail known to SnapTrade for the specified account. Check your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing) to see if you have real-time data access: - If you do, this endpoint returns real-time data. - If you don't, the data is cached and refreshed once a day. If you need real-time, use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
458
458
|
args = self._get_user_account_details_mapped_args(
|
|
459
459
|
query_params=query_params,
|
|
460
460
|
path_params=path_params,
|
|
@@ -509,7 +509,7 @@ class ApiForget(BaseApi):
|
|
|
509
509
|
ApiResponseForDefault,
|
|
510
510
|
api_client.ApiResponseWithoutDeserialization,
|
|
511
511
|
]:
|
|
512
|
-
""" Returns account detail known to SnapTrade for the specified account.
|
|
512
|
+
""" Returns account detail known to SnapTrade for the specified account. Check your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing) to see if you have real-time data access: - If you do, this endpoint returns real-time data. - If you don't, the data is cached and refreshed once a day. If you need real-time, use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
513
513
|
args = self._get_user_account_details_mapped_args(
|
|
514
514
|
query_params=query_params,
|
|
515
515
|
path_params=path_params,
|
|
@@ -443,7 +443,7 @@ class GetUserAccountDetails(BaseApi):
|
|
|
443
443
|
ApiResponseForDefault,
|
|
444
444
|
api_client.ApiResponseWithoutDeserialization,
|
|
445
445
|
]:
|
|
446
|
-
""" Returns account detail known to SnapTrade for the specified account.
|
|
446
|
+
""" Returns account detail known to SnapTrade for the specified account. Check your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing) to see if you have real-time data access: - If you do, this endpoint returns real-time data. - If you don't, the data is cached and refreshed once a day. If you need real-time, use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
447
447
|
args = self._get_user_account_details_mapped_args(
|
|
448
448
|
query_params=query_params,
|
|
449
449
|
path_params=path_params,
|
|
@@ -498,7 +498,7 @@ class ApiForget(BaseApi):
|
|
|
498
498
|
ApiResponseForDefault,
|
|
499
499
|
api_client.ApiResponseWithoutDeserialization,
|
|
500
500
|
]:
|
|
501
|
-
""" Returns account detail known to SnapTrade for the specified account.
|
|
501
|
+
""" Returns account detail known to SnapTrade for the specified account. Check your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing) to see if you have real-time data access: - If you do, this endpoint returns real-time data. - If you don't, the data is cached and refreshed once a day. If you need real-time, use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
502
502
|
args = self._get_user_account_details_mapped_args(
|
|
503
503
|
query_params=query_params,
|
|
504
504
|
path_params=path_params,
|
|
@@ -479,7 +479,7 @@ class GetUserAccountBalance(BaseApi):
|
|
|
479
479
|
ApiResponseForDefault,
|
|
480
480
|
api_client.ApiResponseWithoutDeserialization,
|
|
481
481
|
]:
|
|
482
|
-
""" Returns a list of balances for the account. Each element of the list has a distinct currency. Some brokerages like Questrade [allows holding multiple currencies in the same account](https://www.questrade.com/learning/questrade-basics/balances-and-reports/understanding-your-account-balances).
|
|
482
|
+
""" Returns a list of balances for the account. Each element of the list has a distinct currency. Some brokerages like Questrade [allows holding multiple currencies in the same account](https://www.questrade.com/learning/questrade-basics/balances-and-reports/understanding-your-account-balances). Check your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing) to see if you have real-time data access: - If you do, this endpoint returns real-time data. - If you don't, the data is cached and refreshed once a day. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. If you need real-time, use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
483
483
|
args = self._get_user_account_balance_mapped_args(
|
|
484
484
|
query_params=query_params,
|
|
485
485
|
path_params=path_params,
|
|
@@ -534,7 +534,7 @@ class ApiForget(BaseApi):
|
|
|
534
534
|
ApiResponseForDefault,
|
|
535
535
|
api_client.ApiResponseWithoutDeserialization,
|
|
536
536
|
]:
|
|
537
|
-
""" Returns a list of balances for the account. Each element of the list has a distinct currency. Some brokerages like Questrade [allows holding multiple currencies in the same account](https://www.questrade.com/learning/questrade-basics/balances-and-reports/understanding-your-account-balances).
|
|
537
|
+
""" Returns a list of balances for the account. Each element of the list has a distinct currency. Some brokerages like Questrade [allows holding multiple currencies in the same account](https://www.questrade.com/learning/questrade-basics/balances-and-reports/understanding-your-account-balances). Check your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing) to see if you have real-time data access: - If you do, this endpoint returns real-time data. - If you don't, the data is cached and refreshed once a day. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. If you need real-time, use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
538
538
|
args = self._get_user_account_balance_mapped_args(
|
|
539
539
|
query_params=query_params,
|
|
540
540
|
path_params=path_params,
|
|
@@ -468,7 +468,7 @@ class GetUserAccountBalance(BaseApi):
|
|
|
468
468
|
ApiResponseForDefault,
|
|
469
469
|
api_client.ApiResponseWithoutDeserialization,
|
|
470
470
|
]:
|
|
471
|
-
""" Returns a list of balances for the account. Each element of the list has a distinct currency. Some brokerages like Questrade [allows holding multiple currencies in the same account](https://www.questrade.com/learning/questrade-basics/balances-and-reports/understanding-your-account-balances).
|
|
471
|
+
""" Returns a list of balances for the account. Each element of the list has a distinct currency. Some brokerages like Questrade [allows holding multiple currencies in the same account](https://www.questrade.com/learning/questrade-basics/balances-and-reports/understanding-your-account-balances). Check your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing) to see if you have real-time data access: - If you do, this endpoint returns real-time data. - If you don't, the data is cached and refreshed once a day. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. If you need real-time, use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
472
472
|
args = self._get_user_account_balance_mapped_args(
|
|
473
473
|
query_params=query_params,
|
|
474
474
|
path_params=path_params,
|
|
@@ -523,7 +523,7 @@ class ApiForget(BaseApi):
|
|
|
523
523
|
ApiResponseForDefault,
|
|
524
524
|
api_client.ApiResponseWithoutDeserialization,
|
|
525
525
|
]:
|
|
526
|
-
""" Returns a list of balances for the account. Each element of the list has a distinct currency. Some brokerages like Questrade [allows holding multiple currencies in the same account](https://www.questrade.com/learning/questrade-basics/balances-and-reports/understanding-your-account-balances).
|
|
526
|
+
""" Returns a list of balances for the account. Each element of the list has a distinct currency. Some brokerages like Questrade [allows holding multiple currencies in the same account](https://www.questrade.com/learning/questrade-basics/balances-and-reports/understanding-your-account-balances). Check your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing) to see if you have real-time data access: - If you do, this endpoint returns real-time data. - If you don't, the data is cached and refreshed once a day. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. If you need real-time, use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
527
527
|
args = self._get_user_account_balance_mapped_args(
|
|
528
528
|
query_params=query_params,
|
|
529
529
|
path_params=path_params,
|
|
@@ -513,7 +513,7 @@ class GetUserHoldings(BaseApi):
|
|
|
513
513
|
ApiResponseFor200,
|
|
514
514
|
api_client.ApiResponseWithoutDeserialization,
|
|
515
515
|
]:
|
|
516
|
-
""" Returns a list of balances, positions, and recent orders for the specified account. The data returned is similar to the data returned over the more fine-grained [balances](/reference/Account%20Information/AccountInformation_getUserAccountBalance), [positions](/reference/Account%20Information/AccountInformation_getUserAccountPositions) and [orders](/reference/Account%20Information/AccountInformation_getUserAccountOrders) endpoints. __The finer-grained APIs are preferred. They are easier to work with, faster, and have better error handling than this coarse-grained API.__
|
|
516
|
+
""" Returns a list of balances, positions, and recent orders for the specified account. The data returned is similar to the data returned over the more fine-grained [balances](/reference/Account%20Information/AccountInformation_getUserAccountBalance), [positions](/reference/Account%20Information/AccountInformation_getUserAccountPositions) and [orders](/reference/Account%20Information/AccountInformation_getUserAccountOrders) endpoints. __The finer-grained APIs are preferred. They are easier to work with, faster, and have better error handling than this coarse-grained API.__ Check your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing) to see if you have real-time data access: - If you do, this endpoint returns real-time data. - If you don't, the data is cached and refreshed once a day. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. If you need real-time, use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
517
517
|
args = self._get_user_holdings_mapped_args(
|
|
518
518
|
query_params=query_params,
|
|
519
519
|
path_params=path_params,
|
|
@@ -566,7 +566,7 @@ class ApiForget(BaseApi):
|
|
|
566
566
|
ApiResponseFor200,
|
|
567
567
|
api_client.ApiResponseWithoutDeserialization,
|
|
568
568
|
]:
|
|
569
|
-
""" Returns a list of balances, positions, and recent orders for the specified account. The data returned is similar to the data returned over the more fine-grained [balances](/reference/Account%20Information/AccountInformation_getUserAccountBalance), [positions](/reference/Account%20Information/AccountInformation_getUserAccountPositions) and [orders](/reference/Account%20Information/AccountInformation_getUserAccountOrders) endpoints. __The finer-grained APIs are preferred. They are easier to work with, faster, and have better error handling than this coarse-grained API.__
|
|
569
|
+
""" Returns a list of balances, positions, and recent orders for the specified account. The data returned is similar to the data returned over the more fine-grained [balances](/reference/Account%20Information/AccountInformation_getUserAccountBalance), [positions](/reference/Account%20Information/AccountInformation_getUserAccountPositions) and [orders](/reference/Account%20Information/AccountInformation_getUserAccountOrders) endpoints. __The finer-grained APIs are preferred. They are easier to work with, faster, and have better error handling than this coarse-grained API.__ Check your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing) to see if you have real-time data access: - If you do, this endpoint returns real-time data. - If you don't, the data is cached and refreshed once a day. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. If you need real-time, use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
570
570
|
args = self._get_user_holdings_mapped_args(
|
|
571
571
|
query_params=query_params,
|
|
572
572
|
path_params=path_params,
|
|
@@ -499,7 +499,7 @@ class GetUserHoldings(BaseApi):
|
|
|
499
499
|
ApiResponseFor200,
|
|
500
500
|
api_client.ApiResponseWithoutDeserialization,
|
|
501
501
|
]:
|
|
502
|
-
""" Returns a list of balances, positions, and recent orders for the specified account. The data returned is similar to the data returned over the more fine-grained [balances](/reference/Account%20Information/AccountInformation_getUserAccountBalance), [positions](/reference/Account%20Information/AccountInformation_getUserAccountPositions) and [orders](/reference/Account%20Information/AccountInformation_getUserAccountOrders) endpoints. __The finer-grained APIs are preferred. They are easier to work with, faster, and have better error handling than this coarse-grained API.__
|
|
502
|
+
""" Returns a list of balances, positions, and recent orders for the specified account. The data returned is similar to the data returned over the more fine-grained [balances](/reference/Account%20Information/AccountInformation_getUserAccountBalance), [positions](/reference/Account%20Information/AccountInformation_getUserAccountPositions) and [orders](/reference/Account%20Information/AccountInformation_getUserAccountOrders) endpoints. __The finer-grained APIs are preferred. They are easier to work with, faster, and have better error handling than this coarse-grained API.__ Check your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing) to see if you have real-time data access: - If you do, this endpoint returns real-time data. - If you don't, the data is cached and refreshed once a day. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. If you need real-time, use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
503
503
|
args = self._get_user_holdings_mapped_args(
|
|
504
504
|
query_params=query_params,
|
|
505
505
|
path_params=path_params,
|
|
@@ -552,7 +552,7 @@ class ApiForget(BaseApi):
|
|
|
552
552
|
ApiResponseFor200,
|
|
553
553
|
api_client.ApiResponseWithoutDeserialization,
|
|
554
554
|
]:
|
|
555
|
-
""" Returns a list of balances, positions, and recent orders for the specified account. The data returned is similar to the data returned over the more fine-grained [balances](/reference/Account%20Information/AccountInformation_getUserAccountBalance), [positions](/reference/Account%20Information/AccountInformation_getUserAccountPositions) and [orders](/reference/Account%20Information/AccountInformation_getUserAccountOrders) endpoints. __The finer-grained APIs are preferred. They are easier to work with, faster, and have better error handling than this coarse-grained API.__
|
|
555
|
+
""" Returns a list of balances, positions, and recent orders for the specified account. The data returned is similar to the data returned over the more fine-grained [balances](/reference/Account%20Information/AccountInformation_getUserAccountBalance), [positions](/reference/Account%20Information/AccountInformation_getUserAccountPositions) and [orders](/reference/Account%20Information/AccountInformation_getUserAccountOrders) endpoints. __The finer-grained APIs are preferred. They are easier to work with, faster, and have better error handling than this coarse-grained API.__ Check your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing) to see if you have real-time data access: - If you do, this endpoint returns real-time data. - If you don't, the data is cached and refreshed once a day. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. If you need real-time, use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
556
556
|
args = self._get_user_holdings_mapped_args(
|
|
557
557
|
query_params=query_params,
|
|
558
558
|
path_params=path_params,
|
|
@@ -473,7 +473,7 @@ class ListOptionHoldings(BaseApi):
|
|
|
473
473
|
ApiResponseFor200,
|
|
474
474
|
api_client.ApiResponseWithoutDeserialization,
|
|
475
475
|
]:
|
|
476
|
-
""" Returns a list of option positions in the specified account. For stock/ETF/crypto/mutual fund positions, please use the [positions endpoint](/reference/Account%20Information/AccountInformation_getUserAccountPositions).
|
|
476
|
+
""" Returns a list of option positions in the specified account. For stock/ETF/crypto/mutual fund positions, please use the [positions endpoint](/reference/Account%20Information/AccountInformation_getUserAccountPositions). Check your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing) to see if you have real-time data access: - If you do, this endpoint returns real-time data. - If you don't, the data is cached and refreshed once a day. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. If you need real-time, use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint. """
|
|
477
477
|
args = self._list_option_holdings_mapped_args(
|
|
478
478
|
query_params=query_params,
|
|
479
479
|
path_params=path_params,
|
|
@@ -526,7 +526,7 @@ class ApiForget(BaseApi):
|
|
|
526
526
|
ApiResponseFor200,
|
|
527
527
|
api_client.ApiResponseWithoutDeserialization,
|
|
528
528
|
]:
|
|
529
|
-
""" Returns a list of option positions in the specified account. For stock/ETF/crypto/mutual fund positions, please use the [positions endpoint](/reference/Account%20Information/AccountInformation_getUserAccountPositions).
|
|
529
|
+
""" Returns a list of option positions in the specified account. For stock/ETF/crypto/mutual fund positions, please use the [positions endpoint](/reference/Account%20Information/AccountInformation_getUserAccountPositions). Check your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing) to see if you have real-time data access: - If you do, this endpoint returns real-time data. - If you don't, the data is cached and refreshed once a day. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. If you need real-time, use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint. """
|
|
530
530
|
args = self._list_option_holdings_mapped_args(
|
|
531
531
|
query_params=query_params,
|
|
532
532
|
path_params=path_params,
|
|
@@ -462,7 +462,7 @@ class ListOptionHoldings(BaseApi):
|
|
|
462
462
|
ApiResponseFor200,
|
|
463
463
|
api_client.ApiResponseWithoutDeserialization,
|
|
464
464
|
]:
|
|
465
|
-
""" Returns a list of option positions in the specified account. For stock/ETF/crypto/mutual fund positions, please use the [positions endpoint](/reference/Account%20Information/AccountInformation_getUserAccountPositions).
|
|
465
|
+
""" Returns a list of option positions in the specified account. For stock/ETF/crypto/mutual fund positions, please use the [positions endpoint](/reference/Account%20Information/AccountInformation_getUserAccountPositions). Check your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing) to see if you have real-time data access: - If you do, this endpoint returns real-time data. - If you don't, the data is cached and refreshed once a day. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. If you need real-time, use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint. """
|
|
466
466
|
args = self._list_option_holdings_mapped_args(
|
|
467
467
|
query_params=query_params,
|
|
468
468
|
path_params=path_params,
|
|
@@ -515,7 +515,7 @@ class ApiForget(BaseApi):
|
|
|
515
515
|
ApiResponseFor200,
|
|
516
516
|
api_client.ApiResponseWithoutDeserialization,
|
|
517
517
|
]:
|
|
518
|
-
""" Returns a list of option positions in the specified account. For stock/ETF/crypto/mutual fund positions, please use the [positions endpoint](/reference/Account%20Information/AccountInformation_getUserAccountPositions).
|
|
518
|
+
""" Returns a list of option positions in the specified account. For stock/ETF/crypto/mutual fund positions, please use the [positions endpoint](/reference/Account%20Information/AccountInformation_getUserAccountPositions). Check your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing) to see if you have real-time data access: - If you do, this endpoint returns real-time data. - If you don't, the data is cached and refreshed once a day. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. If you need real-time, use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint. """
|
|
519
519
|
args = self._list_option_holdings_mapped_args(
|
|
520
520
|
query_params=query_params,
|
|
521
521
|
path_params=path_params,
|
|
@@ -539,7 +539,7 @@ class GetUserAccountOrders(BaseApi):
|
|
|
539
539
|
ApiResponseFor200,
|
|
540
540
|
api_client.ApiResponseWithoutDeserialization,
|
|
541
541
|
]:
|
|
542
|
-
""" Returns a list of recent orders in the specified account.
|
|
542
|
+
""" Returns a list of recent orders in the specified account. Check your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing) to see if you have real-time data access: - If you do, this endpoint returns real-time data. - If you don't, the data is cached and refreshed once a day. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. If you need real-time, use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
543
543
|
args = self._get_user_account_orders_mapped_args(
|
|
544
544
|
query_params=query_params,
|
|
545
545
|
path_params=path_params,
|
|
@@ -600,7 +600,7 @@ class ApiForget(BaseApi):
|
|
|
600
600
|
ApiResponseFor200,
|
|
601
601
|
api_client.ApiResponseWithoutDeserialization,
|
|
602
602
|
]:
|
|
603
|
-
""" Returns a list of recent orders in the specified account.
|
|
603
|
+
""" Returns a list of recent orders in the specified account. Check your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing) to see if you have real-time data access: - If you do, this endpoint returns real-time data. - If you don't, the data is cached and refreshed once a day. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. If you need real-time, use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
604
604
|
args = self._get_user_account_orders_mapped_args(
|
|
605
605
|
query_params=query_params,
|
|
606
606
|
path_params=path_params,
|
|
@@ -516,7 +516,7 @@ class GetUserAccountOrders(BaseApi):
|
|
|
516
516
|
ApiResponseFor200,
|
|
517
517
|
api_client.ApiResponseWithoutDeserialization,
|
|
518
518
|
]:
|
|
519
|
-
""" Returns a list of recent orders in the specified account.
|
|
519
|
+
""" Returns a list of recent orders in the specified account. Check your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing) to see if you have real-time data access: - If you do, this endpoint returns real-time data. - If you don't, the data is cached and refreshed once a day. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. If you need real-time, use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
520
520
|
args = self._get_user_account_orders_mapped_args(
|
|
521
521
|
query_params=query_params,
|
|
522
522
|
path_params=path_params,
|
|
@@ -577,7 +577,7 @@ class ApiForget(BaseApi):
|
|
|
577
577
|
ApiResponseFor200,
|
|
578
578
|
api_client.ApiResponseWithoutDeserialization,
|
|
579
579
|
]:
|
|
580
|
-
""" Returns a list of recent orders in the specified account.
|
|
580
|
+
""" Returns a list of recent orders in the specified account. Check your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing) to see if you have real-time data access: - If you do, this endpoint returns real-time data. - If you don't, the data is cached and refreshed once a day. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. If you need real-time, use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
581
581
|
args = self._get_user_account_orders_mapped_args(
|
|
582
582
|
query_params=query_params,
|
|
583
583
|
path_params=path_params,
|
|
@@ -479,7 +479,7 @@ class GetUserAccountPositions(BaseApi):
|
|
|
479
479
|
ApiResponseForDefault,
|
|
480
480
|
api_client.ApiResponseWithoutDeserialization,
|
|
481
481
|
]:
|
|
482
|
-
""" Returns a list of stock/ETF/crypto/mutual fund positions in the specified account. For option positions, please use the [options endpoint](/reference/Options/Options_listOptionHoldings).
|
|
482
|
+
""" Returns a list of stock/ETF/crypto/mutual fund positions in the specified account. For option positions, please use the [options endpoint](/reference/Options/Options_listOptionHoldings). Check your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing) to see if you have real-time data access: - If you do, this endpoint returns real-time data. - If you don't, the data is cached and refreshed once a day. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. If you need real-time, use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
483
483
|
args = self._get_user_account_positions_mapped_args(
|
|
484
484
|
query_params=query_params,
|
|
485
485
|
path_params=path_params,
|
|
@@ -534,7 +534,7 @@ class ApiForget(BaseApi):
|
|
|
534
534
|
ApiResponseForDefault,
|
|
535
535
|
api_client.ApiResponseWithoutDeserialization,
|
|
536
536
|
]:
|
|
537
|
-
""" Returns a list of stock/ETF/crypto/mutual fund positions in the specified account. For option positions, please use the [options endpoint](/reference/Options/Options_listOptionHoldings).
|
|
537
|
+
""" Returns a list of stock/ETF/crypto/mutual fund positions in the specified account. For option positions, please use the [options endpoint](/reference/Options/Options_listOptionHoldings). Check your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing) to see if you have real-time data access: - If you do, this endpoint returns real-time data. - If you don't, the data is cached and refreshed once a day. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. If you need real-time, use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
538
538
|
args = self._get_user_account_positions_mapped_args(
|
|
539
539
|
query_params=query_params,
|
|
540
540
|
path_params=path_params,
|
|
@@ -468,7 +468,7 @@ class GetUserAccountPositions(BaseApi):
|
|
|
468
468
|
ApiResponseForDefault,
|
|
469
469
|
api_client.ApiResponseWithoutDeserialization,
|
|
470
470
|
]:
|
|
471
|
-
""" Returns a list of stock/ETF/crypto/mutual fund positions in the specified account. For option positions, please use the [options endpoint](/reference/Options/Options_listOptionHoldings).
|
|
471
|
+
""" Returns a list of stock/ETF/crypto/mutual fund positions in the specified account. For option positions, please use the [options endpoint](/reference/Options/Options_listOptionHoldings). Check your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing) to see if you have real-time data access: - If you do, this endpoint returns real-time data. - If you don't, the data is cached and refreshed once a day. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. If you need real-time, use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
472
472
|
args = self._get_user_account_positions_mapped_args(
|
|
473
473
|
query_params=query_params,
|
|
474
474
|
path_params=path_params,
|
|
@@ -523,7 +523,7 @@ class ApiForget(BaseApi):
|
|
|
523
523
|
ApiResponseForDefault,
|
|
524
524
|
api_client.ApiResponseWithoutDeserialization,
|
|
525
525
|
]:
|
|
526
|
-
""" Returns a list of stock/ETF/crypto/mutual fund positions in the specified account. For option positions, please use the [options endpoint](/reference/Options/Options_listOptionHoldings).
|
|
526
|
+
""" Returns a list of stock/ETF/crypto/mutual fund positions in the specified account. For option positions, please use the [options endpoint](/reference/Options/Options_listOptionHoldings). Check your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing) to see if you have real-time data access: - If you do, this endpoint returns real-time data. - If you don't, the data is cached and refreshed once a day. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for \"Cache Expiry Time\" to see the exact value for a specific brokerage. If you need real-time, use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint. If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection. """
|
|
527
527
|
args = self._get_user_account_positions_mapped_args(
|
|
528
528
|
query_params=query_params,
|
|
529
529
|
path_params=path_params,
|
|
@@ -520,7 +520,7 @@ class RefreshBrokerageAuthorization(BaseApi):
|
|
|
520
520
|
ApiResponseFor200,
|
|
521
521
|
api_client.ApiResponseWithoutDeserialization,
|
|
522
522
|
]:
|
|
523
|
-
""" Trigger a holdings update for all accounts under this connection. Updates will be queued asynchronously. [`ACCOUNT_HOLDINGS_UPDATED` webhook](/docs/webhooks#webhooks-account_holdings_updated) will be sent once the sync completes for each account under the connection. This endpoint will also trigger a transaction sync for the past day if one has not yet occurred. **
|
|
523
|
+
""" Trigger a holdings update for all accounts under this connection. Updates will be queued asynchronously. [`ACCOUNT_HOLDINGS_UPDATED` webhook](/docs/webhooks#webhooks-account_holdings_updated) will be sent once the sync completes for each account under the connection. This endpoint will also trigger a transaction sync for the past day if one has not yet occurred. **Because of the cost of refreshing a connection, each call to this endpoint incurs an additional charge. You can find the exact cost for your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing)** """
|
|
524
524
|
args = self._refresh_brokerage_authorization_mapped_args(
|
|
525
525
|
query_params=query_params,
|
|
526
526
|
path_params=path_params,
|
|
@@ -573,7 +573,7 @@ class ApiForpost(BaseApi):
|
|
|
573
573
|
ApiResponseFor200,
|
|
574
574
|
api_client.ApiResponseWithoutDeserialization,
|
|
575
575
|
]:
|
|
576
|
-
""" Trigger a holdings update for all accounts under this connection. Updates will be queued asynchronously. [`ACCOUNT_HOLDINGS_UPDATED` webhook](/docs/webhooks#webhooks-account_holdings_updated) will be sent once the sync completes for each account under the connection. This endpoint will also trigger a transaction sync for the past day if one has not yet occurred. **
|
|
576
|
+
""" Trigger a holdings update for all accounts under this connection. Updates will be queued asynchronously. [`ACCOUNT_HOLDINGS_UPDATED` webhook](/docs/webhooks#webhooks-account_holdings_updated) will be sent once the sync completes for each account under the connection. This endpoint will also trigger a transaction sync for the past day if one has not yet occurred. **Because of the cost of refreshing a connection, each call to this endpoint incurs an additional charge. You can find the exact cost for your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing)** """
|
|
577
577
|
args = self._refresh_brokerage_authorization_mapped_args(
|
|
578
578
|
query_params=query_params,
|
|
579
579
|
path_params=path_params,
|
|
@@ -506,7 +506,7 @@ class RefreshBrokerageAuthorization(BaseApi):
|
|
|
506
506
|
ApiResponseFor200,
|
|
507
507
|
api_client.ApiResponseWithoutDeserialization,
|
|
508
508
|
]:
|
|
509
|
-
""" Trigger a holdings update for all accounts under this connection. Updates will be queued asynchronously. [`ACCOUNT_HOLDINGS_UPDATED` webhook](/docs/webhooks#webhooks-account_holdings_updated) will be sent once the sync completes for each account under the connection. This endpoint will also trigger a transaction sync for the past day if one has not yet occurred. **
|
|
509
|
+
""" Trigger a holdings update for all accounts under this connection. Updates will be queued asynchronously. [`ACCOUNT_HOLDINGS_UPDATED` webhook](/docs/webhooks#webhooks-account_holdings_updated) will be sent once the sync completes for each account under the connection. This endpoint will also trigger a transaction sync for the past day if one has not yet occurred. **Because of the cost of refreshing a connection, each call to this endpoint incurs an additional charge. You can find the exact cost for your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing)** """
|
|
510
510
|
args = self._refresh_brokerage_authorization_mapped_args(
|
|
511
511
|
query_params=query_params,
|
|
512
512
|
path_params=path_params,
|
|
@@ -559,7 +559,7 @@ class ApiForpost(BaseApi):
|
|
|
559
559
|
ApiResponseFor200,
|
|
560
560
|
api_client.ApiResponseWithoutDeserialization,
|
|
561
561
|
]:
|
|
562
|
-
""" Trigger a holdings update for all accounts under this connection. Updates will be queued asynchronously. [`ACCOUNT_HOLDINGS_UPDATED` webhook](/docs/webhooks#webhooks-account_holdings_updated) will be sent once the sync completes for each account under the connection. This endpoint will also trigger a transaction sync for the past day if one has not yet occurred. **
|
|
562
|
+
""" Trigger a holdings update for all accounts under this connection. Updates will be queued asynchronously. [`ACCOUNT_HOLDINGS_UPDATED` webhook](/docs/webhooks#webhooks-account_holdings_updated) will be sent once the sync completes for each account under the connection. This endpoint will also trigger a transaction sync for the past day if one has not yet occurred. **Because of the cost of refreshing a connection, each call to this endpoint incurs an additional charge. You can find the exact cost for your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing)** """
|
|
563
563
|
args = self._refresh_brokerage_authorization_mapped_args(
|
|
564
564
|
query_params=query_params,
|
|
565
565
|
path_params=path_params,
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
SnapTrade
|
|
5
|
+
|
|
6
|
+
Connect brokerage accounts to your app for live positions and trading
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0.0
|
|
9
|
+
Contact: api@snaptrade.com
|
|
10
|
+
Created by: https://snaptrade.com/
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
from datetime import datetime, date
|
|
14
|
+
import typing
|
|
15
|
+
from enum import Enum
|
|
16
|
+
from typing_extensions import TypedDict, Literal, TYPE_CHECKING
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
CryptocurrencyIncrement = str
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
SnapTrade
|
|
5
|
+
|
|
6
|
+
Connect brokerage accounts to your app for live positions and trading
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0.0
|
|
9
|
+
Contact: api@snaptrade.com
|
|
10
|
+
Created by: https://snaptrade.com/
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
from datetime import datetime, date
|
|
14
|
+
import typing
|
|
15
|
+
from enum import Enum
|
|
16
|
+
from typing_extensions import TypedDict, Literal, TYPE_CHECKING
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
CryptocurrencyIncrementNullable = str
|
|
@@ -15,6 +15,7 @@ import typing
|
|
|
15
15
|
from enum import Enum
|
|
16
16
|
from typing_extensions import TypedDict, Literal, TYPE_CHECKING
|
|
17
17
|
|
|
18
|
+
from snaptrade_client.type.cryptocurrency_increment_nullable import CryptocurrencyIncrementNullable
|
|
18
19
|
|
|
19
20
|
class RequiredCryptocurrencyPair(TypedDict):
|
|
20
21
|
# The base currency of a pair (e.g., \"BTC\" in BTC/USD). Either fiat or cryptocurrency symbol, for fiat use ISO-4217 codes.
|
|
@@ -28,5 +29,7 @@ class OptionalCryptocurrencyPair(TypedDict, total=False):
|
|
|
28
29
|
# Cryptocurrency pair instrument symbol
|
|
29
30
|
symbol: str
|
|
30
31
|
|
|
32
|
+
increment: CryptocurrencyIncrementNullable
|
|
33
|
+
|
|
31
34
|
class CryptocurrencyPair(RequiredCryptocurrencyPair, OptionalCryptocurrencyPair):
|
|
32
35
|
pass
|
{snaptrade_python_sdk-11.0.144.dist-info → snaptrade_python_sdk-11.0.146.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: snaptrade-python-sdk
|
|
3
|
-
Version: 11.0.
|
|
3
|
+
Version: 11.0.146
|
|
4
4
|
Summary: Client for SnapTrade
|
|
5
5
|
License: MIT
|
|
6
6
|
Author: SnapTrade
|
|
@@ -30,7 +30,7 @@ Description-Content-Type: text/markdown
|
|
|
30
30
|
Connect brokerage accounts to your app for live positions and trading
|
|
31
31
|
|
|
32
32
|
|
|
33
|
-
[](https://pypi.org/project/snaptrade-python-sdk/11.0.146)
|
|
34
34
|
[](https://github.com/passiv/snaptrade-sdks/tree/master/sdks/python#readme)
|
|
35
35
|
[](https://snaptrade.com/)
|
|
36
36
|
|
|
@@ -111,7 +111,7 @@ Python >=3.8
|
|
|
111
111
|
## Installation<a id="installation"></a>
|
|
112
112
|
|
|
113
113
|
```sh
|
|
114
|
-
pip install snaptrade-python-sdk==11.0.
|
|
114
|
+
pip install snaptrade-python-sdk==11.0.146
|
|
115
115
|
```
|
|
116
116
|
|
|
117
117
|
## Getting Started<a id="getting-started"></a>
|
|
@@ -329,7 +329,9 @@ Optional. Comma separated list of authorization IDs (only use if filtering is ne
|
|
|
329
329
|
|
|
330
330
|
Returns a list of balances for the account. Each element of the list has a distinct currency. Some brokerages like Questrade [allows holding multiple currencies in the same account](https://www.questrade.com/learning/questrade-basics/balances-and-reports/understanding-your-account-balances).
|
|
331
331
|
|
|
332
|
-
|
|
332
|
+
Check your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing) to see if you have real-time data access:
|
|
333
|
+
- If you do, this endpoint returns real-time data.
|
|
334
|
+
- If you don't, the data is cached and refreshed once a day. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for "Cache Expiry Time" to see the exact value for a specific brokerage. If you need real-time, use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint.
|
|
333
335
|
|
|
334
336
|
If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection.
|
|
335
337
|
|
|
@@ -370,7 +372,9 @@ get_user_account_balance_response = (
|
|
|
370
372
|
|
|
371
373
|
Returns account detail known to SnapTrade for the specified account.
|
|
372
374
|
|
|
373
|
-
|
|
375
|
+
Check your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing) to see if you have real-time data access:
|
|
376
|
+
- If you do, this endpoint returns real-time data.
|
|
377
|
+
- If you don't, the data is cached and refreshed once a day. If you need real-time, use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint.
|
|
374
378
|
|
|
375
379
|
If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection.
|
|
376
380
|
|
|
@@ -462,7 +466,9 @@ Order ID returned by brokerage. This is the unique identifier for the order in t
|
|
|
462
466
|
|
|
463
467
|
Returns a list of recent orders in the specified account.
|
|
464
468
|
|
|
465
|
-
|
|
469
|
+
Check your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing) to see if you have real-time data access:
|
|
470
|
+
- If you do, this endpoint returns real-time data.
|
|
471
|
+
- If you don't, the data is cached and refreshed once a day. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for "Cache Expiry Time" to see the exact value for a specific brokerage. If you need real-time, use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint.
|
|
466
472
|
|
|
467
473
|
If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection.
|
|
468
474
|
|
|
@@ -513,7 +519,9 @@ Number of days in the past to fetch the most recent orders. Defaults to the last
|
|
|
513
519
|
|
|
514
520
|
Returns a list of stock/ETF/crypto/mutual fund positions in the specified account. For option positions, please use the [options endpoint](/reference/Options/Options_listOptionHoldings).
|
|
515
521
|
|
|
516
|
-
|
|
522
|
+
Check your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing) to see if you have real-time data access:
|
|
523
|
+
- If you do, this endpoint returns real-time data.
|
|
524
|
+
- If you don't, the data is cached and refreshed once a day. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for "Cache Expiry Time" to see the exact value for a specific brokerage. If you need real-time, use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint.
|
|
517
525
|
|
|
518
526
|
If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection.
|
|
519
527
|
|
|
@@ -637,7 +645,9 @@ get_user_account_return_rates_response = (
|
|
|
637
645
|
|
|
638
646
|
Returns a list of balances, positions, and recent orders for the specified account. The data returned is similar to the data returned over the more fine-grained [balances](/reference/Account%20Information/AccountInformation_getUserAccountBalance), [positions](/reference/Account%20Information/AccountInformation_getUserAccountPositions) and [orders](/reference/Account%20Information/AccountInformation_getUserAccountOrders) endpoints. __The finer-grained APIs are preferred. They are easier to work with, faster, and have better error handling than this coarse-grained API.__
|
|
639
647
|
|
|
640
|
-
|
|
648
|
+
Check your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing) to see if you have real-time data access:
|
|
649
|
+
- If you do, this endpoint returns real-time data.
|
|
650
|
+
- If you don't, the data is cached and refreshed once a day. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for "Cache Expiry Time" to see the exact value for a specific brokerage. If you need real-time, use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint.
|
|
641
651
|
|
|
642
652
|
If the connection has become disabled, it can no longer access the latest data from the brokerage, but will continue to return the last available cached state. Please see [this guide](/docs/fix-broken-connections) on how to fix a disabled connection.
|
|
643
653
|
|
|
@@ -676,7 +686,9 @@ get_user_holdings_response = snaptrade.account_information.get_user_holdings(
|
|
|
676
686
|
|
|
677
687
|
Returns all brokerage accounts across all connections known to SnapTrade for the authenticated user.
|
|
678
688
|
|
|
679
|
-
|
|
689
|
+
Check your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing) to see if you have real-time data access:
|
|
690
|
+
- If you do, this endpoint returns real-time data.
|
|
691
|
+
- If you don't, the data is cached and refreshed once a day. If you need real-time, use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint.
|
|
680
692
|
|
|
681
693
|
|
|
682
694
|
#### 🛠️ Usage<a id="🛠️-usage"></a>
|
|
@@ -1077,7 +1089,7 @@ list_brokerage_authorizations_response = (
|
|
|
1077
1089
|
Trigger a holdings update for all accounts under this connection. Updates will be queued asynchronously. [`ACCOUNT_HOLDINGS_UPDATED` webhook](/docs/webhooks#webhooks-account_holdings_updated) will be sent once the sync completes for each account under the connection.
|
|
1078
1090
|
This endpoint will also trigger a transaction sync for the past day if one has not yet occurred.
|
|
1079
1091
|
|
|
1080
|
-
**
|
|
1092
|
+
**Because of the cost of refreshing a connection, each call to this endpoint incurs an additional charge. You can find the exact cost for your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing)**
|
|
1081
1093
|
|
|
1082
1094
|
|
|
1083
1095
|
#### 🛠️ Usage<a id="🛠️-usage"></a>
|
|
@@ -1353,7 +1365,9 @@ Universal symbol ID if symbol
|
|
|
1353
1365
|
|
|
1354
1366
|
Returns a list of option positions in the specified account. For stock/ETF/crypto/mutual fund positions, please use the [positions endpoint](/reference/Account%20Information/AccountInformation_getUserAccountPositions).
|
|
1355
1367
|
|
|
1356
|
-
|
|
1368
|
+
Check your API key on the [Customer Dashboard billing page](https://dashboard.snaptrade.com/settings/billing) to see if you have real-time data access:
|
|
1369
|
+
- If you do, this endpoint returns real-time data.
|
|
1370
|
+
- If you don't, the data is cached and refreshed once a day. How long the data is cached for varies by brokerage. Check the [brokerage integrations doc](https://snaptrade.notion.site/66793431ad0b416489eaabaf248d0afb?v=d16c4c97b8d5438bbb2d8581ac53b11e) and look for "Cache Expiry Time" to see the exact value for a specific brokerage. If you need real-time, use the [manual refresh](/reference/Connections/Connections_refreshBrokerageAuthorization) endpoint.
|
|
1357
1371
|
|
|
1358
1372
|
|
|
1359
1373
|
#### 🛠️ Usage<a id="🛠️-usage"></a>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
snaptrade_client/__init__.py,sha256=
|
|
2
|
-
snaptrade_client/api_client.py,sha256=
|
|
1
|
+
snaptrade_client/__init__.py,sha256=3b2o-ZWtXtCIxOi9ONVhLrFiM6QYoimJrSEbtECtplU,820
|
|
2
|
+
snaptrade_client/api_client.py,sha256=56ieoGWskwQdlU2OHGZH4I-1qFO32HxMHlovEsNKCTo,73975
|
|
3
3
|
snaptrade_client/api_response.py,sha256=mZn18p_TNr6OY0HXTZW5InL9iXfqsJWstYGeGD-euPA,663
|
|
4
4
|
snaptrade_client/apis/__init__.py,sha256=RTosXhMn41tMsKPUjIy-VK-_efOWzhkKiuGggJ3A6E0,214
|
|
5
5
|
snaptrade_client/apis/path_to_api.py,sha256=U2W6P3ea6gIUTB16bJ16y4fIBuaOF_TqUyGmuFF6STM,12851
|
|
@@ -81,7 +81,7 @@ snaptrade_client/apis/tags/transactions_and_reporting_api_generated.py,sha256=Tw
|
|
|
81
81
|
snaptrade_client/client.py,sha256=p-1j4DS7DHuwClS8Kh4VHbTFB7jf-DMpkrh5PcCmYTg,2308
|
|
82
82
|
snaptrade_client/client.pyi,sha256=p-1j4DS7DHuwClS8Kh4VHbTFB7jf-DMpkrh5PcCmYTg,2308
|
|
83
83
|
snaptrade_client/client_custom.py,sha256=Jx9ulCzelMFlESjzVFQSjBlYcH4dWxSJJWZDMPLyetM,745
|
|
84
|
-
snaptrade_client/configuration.py,sha256=
|
|
84
|
+
snaptrade_client/configuration.py,sha256=MUFrHoUBqAktEQyWqVdHh_hXdoYOqf5dN260xQ1iJok,19262
|
|
85
85
|
snaptrade_client/exceptions.py,sha256=X0apI_sgQpGpa-qIqPUClReCdHAxeSuA6GW0YH_RsWg,7771
|
|
86
86
|
snaptrade_client/exceptions_base.py,sha256=LAQkaC5C61-SdBLfyMjb0K7AYJkWVuLmg2uCvHa71FM,2274
|
|
87
87
|
snaptrade_client/model/__init__.py,sha256=ayi2MIzcf0eAIsY13ToiNplV9tW-pMBFrC0I9yckGM8,350
|
|
@@ -185,8 +185,12 @@ snaptrade_client/model/crypto_trading_instrument.py,sha256=U87R7vwtmRvhIcaT_0phD
|
|
|
185
185
|
snaptrade_client/model/crypto_trading_instrument.pyi,sha256=MUwXwNl7C7Lm79sJtQXxsFBeLw7rC2K8tmpW0VLL-yk,3432
|
|
186
186
|
snaptrade_client/model/cryptocurrency_base_symbol.py,sha256=TopWpvjdmfDsUor1LG6HqvYkE9ilSdBgDEjOFVMH0xU,614
|
|
187
187
|
snaptrade_client/model/cryptocurrency_base_symbol.pyi,sha256=TopWpvjdmfDsUor1LG6HqvYkE9ilSdBgDEjOFVMH0xU,614
|
|
188
|
-
snaptrade_client/model/
|
|
189
|
-
snaptrade_client/model/
|
|
188
|
+
snaptrade_client/model/cryptocurrency_increment.py,sha256=wGnL2-xAB8LShx9aixMD_G_1oM1J4HJBtHRH2i4vGhE,613
|
|
189
|
+
snaptrade_client/model/cryptocurrency_increment.pyi,sha256=wGnL2-xAB8LShx9aixMD_G_1oM1J4HJBtHRH2i4vGhE,613
|
|
190
|
+
snaptrade_client/model/cryptocurrency_increment_nullable.py,sha256=vmRjLNrjSa0geXJveiU7U8SjWC6zoBlWPLuk1QBAgss,1189
|
|
191
|
+
snaptrade_client/model/cryptocurrency_increment_nullable.pyi,sha256=vmRjLNrjSa0geXJveiU7U8SjWC6zoBlWPLuk1QBAgss,1189
|
|
192
|
+
snaptrade_client/model/cryptocurrency_pair.py,sha256=td8VMkf8k_hvaWec2A_8rFSDTRmUQRhndfE0tsEVSPA,4440
|
|
193
|
+
snaptrade_client/model/cryptocurrency_pair.pyi,sha256=td8VMkf8k_hvaWec2A_8rFSDTRmUQRhndfE0tsEVSPA,4440
|
|
190
194
|
snaptrade_client/model/cryptocurrency_pair_quote.py,sha256=w-3GC7sbzV_NSd64SD1pxhjGjdvD7ik-zFbtDJDTodE,4103
|
|
191
195
|
snaptrade_client/model/cryptocurrency_pair_quote.pyi,sha256=w-3GC7sbzV_NSd64SD1pxhjGjdvD7ik-zFbtDJDTodE,4103
|
|
192
196
|
snaptrade_client/model/cryptocurrency_pair_symbol.py,sha256=W4o6DVQ6DUsCt5VMUBQQvH5wgtiPjq5_XdU3nkxhVTc,614
|
|
@@ -441,35 +445,35 @@ snaptrade_client/model/user_secret.py,sha256=7xf__S566WtTq7VthmdVtrCBIfgpnYWYqE9
|
|
|
441
445
|
snaptrade_client/model/user_secret.pyi,sha256=7xf__S566WtTq7VthmdVtrCBIfgpnYWYqE9cmz9vBMc,600
|
|
442
446
|
snaptrade_client/model/validated_trade_body.py,sha256=NkTel1ulgSjBd6K7vur6puEbfrg3u1vdmtUKArOu8ws,3085
|
|
443
447
|
snaptrade_client/model/validated_trade_body.pyi,sha256=NkTel1ulgSjBd6K7vur6puEbfrg3u1vdmtUKArOu8ws,3085
|
|
444
|
-
snaptrade_client/models/__init__.py,sha256=
|
|
448
|
+
snaptrade_client/models/__init__.py,sha256=Ubf9nxMK6oMHr7ZCH3pFq0V3QSt2lExB6so0M6Aushg,14184
|
|
445
449
|
snaptrade_client/operation_parameter_map.py,sha256=8DEC0BfPisWdf9-TncvKm8bxar5Ze-J2rIYUc5hqk1Q,19073
|
|
446
450
|
snaptrade_client/paths/__init__.py,sha256=O5AyZd3nQk5HAoQSp2mwdtnBGBmnOhYS6m3JBRk244c,3672
|
|
447
451
|
snaptrade_client/paths/accounts/__init__.py,sha256=_Bqi6B13A-kgd0AOpqmcE1vTxJDfoz-r3Hwf-AmwW6A,307
|
|
448
|
-
snaptrade_client/paths/accounts/get.py,sha256=
|
|
449
|
-
snaptrade_client/paths/accounts/get.pyi,sha256=
|
|
452
|
+
snaptrade_client/paths/accounts/get.py,sha256=XR5J2YLyYQrfHRVSK0hfUJKhVsu-6P7ii5AeRgGz8Ao,16835
|
|
453
|
+
snaptrade_client/paths/accounts/get.pyi,sha256=6fsjWz70WuEn-bupBDeaHJ46o7TJikwp0akJqKaob88,16633
|
|
450
454
|
snaptrade_client/paths/accounts_account_id/__init__.py,sha256=9aC0eIU_zO4LjW3yibk0-Kz1EM4BdeDGrZKVqb6JT6c,329
|
|
451
|
-
snaptrade_client/paths/accounts_account_id/get.py,sha256=
|
|
452
|
-
snaptrade_client/paths/accounts_account_id/get.pyi,sha256=
|
|
455
|
+
snaptrade_client/paths/accounts_account_id/get.py,sha256=dhQZvchTeIf6JKvLMcwU7KoPCXpyz-KW7xrDQleGZCI,19670
|
|
456
|
+
snaptrade_client/paths/accounts_account_id/get.pyi,sha256=iGPQC1hXzNp89COsHRuD6QTzsHkjJmF4dKFlfOf6XxI,19468
|
|
453
457
|
snaptrade_client/paths/accounts_account_id/put.py,sha256=yUtU_Ztlb4LcRBE9RbkthicOIW9YKg9gkp9LXFjPTIw,18935
|
|
454
458
|
snaptrade_client/paths/accounts_account_id/put.pyi,sha256=x_GjR3jkoxPvy-NzjnD-f5Hb8EZL3NJxVwMHVSmWpGA,18733
|
|
455
459
|
snaptrade_client/paths/accounts_account_id_activities/__init__.py,sha256=qlDvsgw0WG71ArqzcRK7BinKmGDD87MuNTgRF3qsiak,351
|
|
456
460
|
snaptrade_client/paths/accounts_account_id_activities/get.py,sha256=swwM-uLT8uFfypqhz5-84SvfSkYcET0CkRSiMBPpsPY,23602
|
|
457
461
|
snaptrade_client/paths/accounts_account_id_activities/get.pyi,sha256=V0KadGSbTa8Cszc7Tqr4GbcVowbew3cZ1YR45paRRYo,23264
|
|
458
462
|
snaptrade_client/paths/accounts_account_id_balances/__init__.py,sha256=LMzd1SUmXEbRDIfESN0Aap2D2FQT9N_QI-MrJsHFA6M,347
|
|
459
|
-
snaptrade_client/paths/accounts_account_id_balances/get.py,sha256=
|
|
460
|
-
snaptrade_client/paths/accounts_account_id_balances/get.pyi,sha256=
|
|
463
|
+
snaptrade_client/paths/accounts_account_id_balances/get.py,sha256=DJ90z6YHYWmxjEhCIOg3UH9Sd8LkNTkvFAD_Xc9FYf0,21312
|
|
464
|
+
snaptrade_client/paths/accounts_account_id_balances/get.pyi,sha256=xUBNL44R5tOY0EUjrZ3QPsvxfeAZ92dtCZxlp_XsmK8,21110
|
|
461
465
|
snaptrade_client/paths/accounts_account_id_holdings/__init__.py,sha256=EkzRO4nxKZWuVWU5PkA0nQsIcAupunq2k_d_Vnc3X0M,347
|
|
462
|
-
snaptrade_client/paths/accounts_account_id_holdings/get.py,sha256=
|
|
463
|
-
snaptrade_client/paths/accounts_account_id_holdings/get.pyi,sha256
|
|
466
|
+
snaptrade_client/paths/accounts_account_id_holdings/get.py,sha256=A9vQ3QnQLWST_oCukPEEZdHx7NL9Qb-mPDg307DIuZU,23218
|
|
467
|
+
snaptrade_client/paths/accounts_account_id_holdings/get.pyi,sha256=azePL-mBfCxtI-FqUh2Ov4XKZLCrr4-DR4FQC2ftLII,22934
|
|
464
468
|
snaptrade_client/paths/accounts_account_id_options/__init__.py,sha256=lo1mHnLsrOOIWOjzgIxryXLAXohM1empUmzef0JxjKI,345
|
|
465
|
-
snaptrade_client/paths/accounts_account_id_options/get.py,sha256=
|
|
466
|
-
snaptrade_client/paths/accounts_account_id_options/get.pyi,sha256=
|
|
469
|
+
snaptrade_client/paths/accounts_account_id_options/get.py,sha256=b7cH-9DaT8Z6A0bKxd6p5etTddRRdnNtNI05zygTpNM,20673
|
|
470
|
+
snaptrade_client/paths/accounts_account_id_options/get.pyi,sha256=MU-7bomnVBwZB0IyFkPwtoiBga872I32i9htXQdMLl0,20479
|
|
467
471
|
snaptrade_client/paths/accounts_account_id_options_chain/__init__.py,sha256=ork46e4Gd8LcCS8jQSBwwDuM7h2L9L6VJX4KOMlro2M,357
|
|
468
472
|
snaptrade_client/paths/accounts_account_id_options_chain/get.py,sha256=9wE6K2qLBKMxJBGuXCkVKVHOeAGquEzGQYrw_Yv44DU,19093
|
|
469
473
|
snaptrade_client/paths/accounts_account_id_options_chain/get.pyi,sha256=7qu-rIKEaRegnMZLruZMmC3ON-bCy-dX3R2Umsep0nU,18899
|
|
470
474
|
snaptrade_client/paths/accounts_account_id_orders/__init__.py,sha256=zHuTi8F_iUeJNBtI08jQZe2-gAFrIDAYEl1B5y0XpTM,343
|
|
471
|
-
snaptrade_client/paths/accounts_account_id_orders/get.py,sha256=
|
|
472
|
-
snaptrade_client/paths/accounts_account_id_orders/get.pyi,sha256=
|
|
475
|
+
snaptrade_client/paths/accounts_account_id_orders/get.py,sha256=_a2ZD1RrteTno5TaADXO2AmhXHpKKt2o1eGjxXgOJvs,22817
|
|
476
|
+
snaptrade_client/paths/accounts_account_id_orders/get.pyi,sha256=OjinIFRFGF31JAS279Mffc-BsyKgKHCq1ZBTsBAarwE,22402
|
|
473
477
|
snaptrade_client/paths/accounts_account_id_orders_cancel/__init__.py,sha256=UIeHlsXhxZyqf4ADkLxYxJUH6ChCcSkpeML1XWjxGdI,357
|
|
474
478
|
snaptrade_client/paths/accounts_account_id_orders_cancel/post.py,sha256=sPmESQzGN6Y_ah1zE9JqB5f8SucQUeQnJYSsIOhCgCg,24634
|
|
475
479
|
snaptrade_client/paths/accounts_account_id_orders_cancel/post.pyi,sha256=7rGmssodCjE7gL93TszNkejW8aPyQuoMehuPecNUpbE,24410
|
|
@@ -480,8 +484,8 @@ snaptrade_client/paths/accounts_account_id_orders_v2/__init__.py,sha256=bLxvW4Bv
|
|
|
480
484
|
snaptrade_client/paths/accounts_account_id_orders_v2/get.py,sha256=bNxhD1o7ZWyCAxXbElbRkX_zSZ107nwBbfyjoVSzsU4,21226
|
|
481
485
|
snaptrade_client/paths/accounts_account_id_orders_v2/get.pyi,sha256=xuyziqQ2H4YxTYnyLLeyaRO6M0nakQNth9LZqJtBYQo,20811
|
|
482
486
|
snaptrade_client/paths/accounts_account_id_positions/__init__.py,sha256=UB-B0t2OnlP8QvI9ptBNhqYsywmYsFZz9G8NJkVZBTM,349
|
|
483
|
-
snaptrade_client/paths/accounts_account_id_positions/get.py,sha256=
|
|
484
|
-
snaptrade_client/paths/accounts_account_id_positions/get.pyi,sha256=
|
|
487
|
+
snaptrade_client/paths/accounts_account_id_positions/get.py,sha256=tM59585FZGE4Ld6l5H6NdmWU02I-DofPxZu8BHyZNZA,21144
|
|
488
|
+
snaptrade_client/paths/accounts_account_id_positions/get.pyi,sha256=hfVLsaU1yhgd_0UDZcCBNy6PigfxYYYfWIMgHlMCeqo,20942
|
|
485
489
|
snaptrade_client/paths/accounts_account_id_quotes/__init__.py,sha256=_EWd0irMSNiZtx_chO_X9TCy_WWzFQoySf3yLEkAh2I,343
|
|
486
490
|
snaptrade_client/paths/accounts_account_id_quotes/get.py,sha256=JADR5PB0JVGiRBwWaKhRj4w4BlRMu96p6WPEvVVivE0,20735
|
|
487
491
|
snaptrade_client/paths/accounts_account_id_quotes/get.pyi,sha256=xsIXCJCcHZ8aCS-ammQ75NSiPP1HJdyf4IExstlmysk,20541
|
|
@@ -536,8 +540,8 @@ snaptrade_client/paths/authorizations_authorization_id_disable/__init__.py,sha25
|
|
|
536
540
|
snaptrade_client/paths/authorizations_authorization_id_disable/post.py,sha256=MvCClKi8kjlh1z22Zb121gVX64fFcb6TUFZO5PYzfFk,22307
|
|
537
541
|
snaptrade_client/paths/authorizations_authorization_id_disable/post.pyi,sha256=sfD_WnNCjcP51ugfkf7oRoP6F9Gdk4HgYJTWfZAMkTU,22023
|
|
538
542
|
snaptrade_client/paths/authorizations_authorization_id_refresh/__init__.py,sha256=Yv0ig0vQjYxadUU_TEo19MralKnO0CyDG9pz47kf2iw,369
|
|
539
|
-
snaptrade_client/paths/authorizations_authorization_id_refresh/post.py,sha256=
|
|
540
|
-
snaptrade_client/paths/authorizations_authorization_id_refresh/post.pyi,sha256=
|
|
543
|
+
snaptrade_client/paths/authorizations_authorization_id_refresh/post.py,sha256=qFz6PoP15U9xtOuVlnLujq7t_hqY9ImlctvVkbAa6r0,22535
|
|
544
|
+
snaptrade_client/paths/authorizations_authorization_id_refresh/post.pyi,sha256=RZ2n1RQlfZ5p9b-4Amh0uTdnLrTDJf79GKcxAauJjXQ,22251
|
|
541
545
|
snaptrade_client/paths/authorizations_authorization_id_return_rates/__init__.py,sha256=BsRP258HY68VEwqvdmNWhMsIUDwjXFesJZvURpMXrgY,379
|
|
542
546
|
snaptrade_client/paths/authorizations_authorization_id_return_rates/get.py,sha256=faV5MOuOJZ7hxKRt2GCgD4l4lGLrEdNoIyCFLNYhwns,19561
|
|
543
547
|
snaptrade_client/paths/authorizations_authorization_id_return_rates/get.pyi,sha256=maUAQtJJQrtuUg5BTzSZqvNcBb3R8BV1_WNX0SuiNsg,19337
|
|
@@ -667,7 +671,9 @@ snaptrade_client/type/crypto_order_preview.py,sha256=cZ_LgtZlHCYiaL9nSSliV4SE0rF
|
|
|
667
671
|
snaptrade_client/type/crypto_order_preview_estimated_fee.py,sha256=pqHTKg-dIhH24BCnUY4fFdERJIcWJEGpD5OAXHntEqk,796
|
|
668
672
|
snaptrade_client/type/crypto_trading_instrument.py,sha256=D8dOWGdyqZAluHgYFfMtl3ru8jl3-2n1IKcNL7E5MYQ,705
|
|
669
673
|
snaptrade_client/type/cryptocurrency_base_symbol.py,sha256=zKNL1cf3yes--pBAvvCu-C5IfXsk_eQDIzf8zSTNx1U,402
|
|
670
|
-
snaptrade_client/type/
|
|
674
|
+
snaptrade_client/type/cryptocurrency_increment.py,sha256=GTLNaryU-6UjC99pEHY2zdUqvxXNm0jjr4QkX60vzuU,401
|
|
675
|
+
snaptrade_client/type/cryptocurrency_increment_nullable.py,sha256=VSsjyCdnnIuERoWvKbJ1mMku8k99GJt98VSdij7h2gw,409
|
|
676
|
+
snaptrade_client/type/cryptocurrency_pair.py,sha256=Nq6-9X4bvWcFK29YhYdFZuqvCQifToo_gx2yC6dj76U,1067
|
|
671
677
|
snaptrade_client/type/cryptocurrency_pair_quote.py,sha256=bwBv2jvYU6iQGZ13wv_X7EmWzKxnHvIeDv8PS1-_3Cw,825
|
|
672
678
|
snaptrade_client/type/cryptocurrency_pair_symbol.py,sha256=Lx5tTAQhMofnWzaKKYhwS_9b5fy2JgYUwWRxyH_hOak,402
|
|
673
679
|
snaptrade_client/type/cryptocurrency_quote_symbol.py,sha256=RizZlNTvNhniC32Jh8CHjVH8n-ekRjqpLn5LwVFyeVo,403
|
|
@@ -797,7 +803,7 @@ snaptrade_client/type/user_secret.py,sha256=pKCVhqf1rROHwa6tvoyA5OAKXCBAmNDvIQCf
|
|
|
797
803
|
snaptrade_client/type/validated_trade_body.py,sha256=ZIPBQWii_a-9zHaBCJ6bQtmL1_I7AG0zwuvkY-ZQ6R4,890
|
|
798
804
|
snaptrade_client/type_util.py,sha256=JIrMYgJzd4IJ8Ne2vqcahlPA9dVmphL9sn8gwccCB4Y,563
|
|
799
805
|
snaptrade_client/validation_metadata.py,sha256=VTN5y-NudHXok1X468J4PnGze_tGEAcs1v3gsXmcrb0,3172
|
|
800
|
-
snaptrade_python_sdk-11.0.
|
|
801
|
-
snaptrade_python_sdk-11.0.
|
|
802
|
-
snaptrade_python_sdk-11.0.
|
|
803
|
-
snaptrade_python_sdk-11.0.
|
|
806
|
+
snaptrade_python_sdk-11.0.146.dist-info/LICENSE,sha256=W_1kcxEzOnZXIYJ1GVUipbmUu6dNLt-Pc-OI55h3k-A,1081
|
|
807
|
+
snaptrade_python_sdk-11.0.146.dist-info/METADATA,sha256=HQXLnhxHzdZhpg2qwMicsUujrd3mMr3HACQh0Z0GO_o,100860
|
|
808
|
+
snaptrade_python_sdk-11.0.146.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
809
|
+
snaptrade_python_sdk-11.0.146.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|