cs2cap 1.0.0__tar.gz

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.
Files changed (315) hide show
  1. cs2cap-1.0.0/PKG-INFO +301 -0
  2. cs2cap-1.0.0/README.md +280 -0
  3. cs2cap-1.0.0/cs2cap/__init__.py +342 -0
  4. cs2cap-1.0.0/cs2cap/api/__init__.py +17 -0
  5. cs2cap-1.0.0/cs2cap/api/account_alerts_api.py +1799 -0
  6. cs2cap-1.0.0/cs2cap/api/account_api_keys_api.py +1741 -0
  7. cs2cap-1.0.0/cs2cap/api/account_watchlist_api.py +909 -0
  8. cs2cap-1.0.0/cs2cap/api/account_webhooks_api.py +2002 -0
  9. cs2cap-1.0.0/cs2cap/api/bids_api.py +994 -0
  10. cs2cap-1.0.0/cs2cap/api/foreign_exchange_api.py +293 -0
  11. cs2cap-1.0.0/cs2cap/api/inventory_api.py +579 -0
  12. cs2cap-1.0.0/cs2cap/api/items_api.py +879 -0
  13. cs2cap-1.0.0/cs2cap/api/market_intelligence_api.py +1553 -0
  14. cs2cap-1.0.0/cs2cap/api/portfolio_api.py +4266 -0
  15. cs2cap-1.0.0/cs2cap/api/prices_api.py +1858 -0
  16. cs2cap-1.0.0/cs2cap/api/providers_api.py +316 -0
  17. cs2cap-1.0.0/cs2cap/api/sales_api.py +406 -0
  18. cs2cap-1.0.0/cs2cap/api_client.py +813 -0
  19. cs2cap-1.0.0/cs2cap/api_response.py +21 -0
  20. cs2cap-1.0.0/cs2cap/configuration.py +585 -0
  21. cs2cap-1.0.0/cs2cap/exceptions.py +218 -0
  22. cs2cap-1.0.0/cs2cap/models/__init__.py +151 -0
  23. cs2cap-1.0.0/cs2cap/models/account_mutation_response.py +87 -0
  24. cs2cap-1.0.0/cs2cap/models/alert_batch_create_request.py +96 -0
  25. cs2cap-1.0.0/cs2cap/models/alert_batch_create_response.py +99 -0
  26. cs2cap-1.0.0/cs2cap/models/alert_batch_create_result.py +117 -0
  27. cs2cap-1.0.0/cs2cap/models/alert_create_request.py +108 -0
  28. cs2cap-1.0.0/cs2cap/models/alert_definition.py +126 -0
  29. cs2cap-1.0.0/cs2cap/models/alert_delivery_summary.py +141 -0
  30. cs2cap-1.0.0/cs2cap/models/alert_event_summary.py +134 -0
  31. cs2cap-1.0.0/cs2cap/models/alert_events_response.py +101 -0
  32. cs2cap-1.0.0/cs2cap/models/alert_item_summary.py +96 -0
  33. cs2cap-1.0.0/cs2cap/models/alert_list_response.py +101 -0
  34. cs2cap-1.0.0/cs2cap/models/alert_update_request.py +117 -0
  35. cs2cap-1.0.0/cs2cap/models/all_providers.py +74 -0
  36. cs2cap-1.0.0/cs2cap/models/api_key_info.py +142 -0
  37. cs2cap-1.0.0/cs2cap/models/batch_bid_item.py +106 -0
  38. cs2cap-1.0.0/cs2cap/models/batch_bid_quote.py +106 -0
  39. cs2cap-1.0.0/cs2cap/models/batch_bids_meta.py +96 -0
  40. cs2cap-1.0.0/cs2cap/models/batch_bids_request.py +108 -0
  41. cs2cap-1.0.0/cs2cap/models/batch_bids_response.py +105 -0
  42. cs2cap-1.0.0/cs2cap/models/batch_price_item.py +106 -0
  43. cs2cap-1.0.0/cs2cap/models/batch_price_quote.py +106 -0
  44. cs2cap-1.0.0/cs2cap/models/batch_prices_meta.py +96 -0
  45. cs2cap-1.0.0/cs2cap/models/batch_prices_request.py +108 -0
  46. cs2cap-1.0.0/cs2cap/models/batch_prices_response.py +105 -0
  47. cs2cap-1.0.0/cs2cap/models/bids_filter_meta.py +113 -0
  48. cs2cap-1.0.0/cs2cap/models/bids_meta.py +95 -0
  49. cs2cap-1.0.0/cs2cap/models/bids_response.py +107 -0
  50. cs2cap-1.0.0/cs2cap/models/buy_order_item.py +117 -0
  51. cs2cap-1.0.0/cs2cap/models/buy_order_provider.py +46 -0
  52. cs2cap-1.0.0/cs2cap/models/charm_info.py +94 -0
  53. cs2cap-1.0.0/cs2cap/models/child_api_key_create_request.py +102 -0
  54. cs2cap-1.0.0/cs2cap/models/child_api_key_create_response.py +95 -0
  55. cs2cap-1.0.0/cs2cap/models/child_api_key_detail_response.py +93 -0
  56. cs2cap-1.0.0/cs2cap/models/child_api_key_list_response.py +101 -0
  57. cs2cap-1.0.0/cs2cap/models/child_api_key_update_request.py +107 -0
  58. cs2cap-1.0.0/cs2cap/models/cursor_pagination_meta.py +99 -0
  59. cs2cap-1.0.0/cs2cap/models/error_response.py +89 -0
  60. cs2cap-1.0.0/cs2cap/models/fx_rates_response.py +95 -0
  61. cs2cap-1.0.0/cs2cap/models/indicator_data_coverage.py +106 -0
  62. cs2cap-1.0.0/cs2cap/models/indicator_momentum.py +169 -0
  63. cs2cap-1.0.0/cs2cap/models/indicator_signals.py +127 -0
  64. cs2cap-1.0.0/cs2cap/models/indicator_volatility.py +120 -0
  65. cs2cap-1.0.0/cs2cap/models/indicator_volume.py +106 -0
  66. cs2cap-1.0.0/cs2cap/models/inspect_info.py +106 -0
  67. cs2cap-1.0.0/cs2cap/models/item_out.py +234 -0
  68. cs2cap-1.0.0/cs2cap/models/items_catalog_summary.py +87 -0
  69. cs2cap-1.0.0/cs2cap/models/items_filter_metadata.py +103 -0
  70. cs2cap-1.0.0/cs2cap/models/items_metadata_response.py +97 -0
  71. cs2cap-1.0.0/cs2cap/models/items_paginated_response_item_out.py +101 -0
  72. cs2cap-1.0.0/cs2cap/models/items_pagination_meta.py +103 -0
  73. cs2cap-1.0.0/cs2cap/models/loc_inner.py +138 -0
  74. cs2cap-1.0.0/cs2cap/models/market_arbitrage_data.py +95 -0
  75. cs2cap-1.0.0/cs2cap/models/market_arbitrage_item.py +142 -0
  76. cs2cap-1.0.0/cs2cap/models/market_arbitrage_meta.py +111 -0
  77. cs2cap-1.0.0/cs2cap/models/market_arbitrage_response.py +103 -0
  78. cs2cap-1.0.0/cs2cap/models/market_index_group.py +103 -0
  79. cs2cap-1.0.0/cs2cap/models/market_indexes_data.py +105 -0
  80. cs2cap-1.0.0/cs2cap/models/market_indexes_meta.py +120 -0
  81. cs2cap-1.0.0/cs2cap/models/market_indexes_response.py +97 -0
  82. cs2cap-1.0.0/cs2cap/models/market_indicators_item_data.py +140 -0
  83. cs2cap-1.0.0/cs2cap/models/market_indicators_item_response.py +97 -0
  84. cs2cap-1.0.0/cs2cap/models/market_indicators_meta.py +120 -0
  85. cs2cap-1.0.0/cs2cap/models/market_item.py +131 -0
  86. cs2cap-1.0.0/cs2cap/models/market_item_analytics_coverage.py +91 -0
  87. cs2cap-1.0.0/cs2cap/models/market_item_analytics_data.py +118 -0
  88. cs2cap-1.0.0/cs2cap/models/market_item_analytics_provider.py +262 -0
  89. cs2cap-1.0.0/cs2cap/models/market_item_analytics_response.py +97 -0
  90. cs2cap-1.0.0/cs2cap/models/market_item_analytics_summary.py +290 -0
  91. cs2cap-1.0.0/cs2cap/models/market_items_snapshot_data.py +95 -0
  92. cs2cap-1.0.0/cs2cap/models/market_items_snapshot_item.py +102 -0
  93. cs2cap-1.0.0/cs2cap/models/market_items_snapshot_response.py +97 -0
  94. cs2cap-1.0.0/cs2cap/models/market_meta.py +111 -0
  95. cs2cap-1.0.0/cs2cap/models/market_time_window_meta.py +87 -0
  96. cs2cap-1.0.0/cs2cap/models/pagination_meta.py +103 -0
  97. cs2cap-1.0.0/cs2cap/models/phase_name.py +43 -0
  98. cs2cap-1.0.0/cs2cap/models/portfolio_add_item_request.py +109 -0
  99. cs2cap-1.0.0/cs2cap/models/portfolio_create.py +88 -0
  100. cs2cap-1.0.0/cs2cap/models/portfolio_data.py +101 -0
  101. cs2cap-1.0.0/cs2cap/models/portfolio_history_meta.py +132 -0
  102. cs2cap-1.0.0/cs2cap/models/portfolio_history_page.py +107 -0
  103. cs2cap-1.0.0/cs2cap/models/portfolio_history_point.py +96 -0
  104. cs2cap-1.0.0/cs2cap/models/portfolio_import_request.py +92 -0
  105. cs2cap-1.0.0/cs2cap/models/portfolio_import_result.py +91 -0
  106. cs2cap-1.0.0/cs2cap/models/portfolio_item_out.py +170 -0
  107. cs2cap-1.0.0/cs2cap/models/portfolio_line_item.py +129 -0
  108. cs2cap-1.0.0/cs2cap/models/portfolio_list_response.py +95 -0
  109. cs2cap-1.0.0/cs2cap/models/portfolio_meta.py +92 -0
  110. cs2cap-1.0.0/cs2cap/models/portfolio_out.py +96 -0
  111. cs2cap-1.0.0/cs2cap/models/portfolio_request.py +105 -0
  112. cs2cap-1.0.0/cs2cap/models/portfolio_request_item.py +90 -0
  113. cs2cap-1.0.0/cs2cap/models/portfolio_response.py +97 -0
  114. cs2cap-1.0.0/cs2cap/models/price_candle_item.py +110 -0
  115. cs2cap-1.0.0/cs2cap/models/price_candles_meta.py +107 -0
  116. cs2cap-1.0.0/cs2cap/models/price_candles_page.py +101 -0
  117. cs2cap-1.0.0/cs2cap/models/price_history_filters_meta.py +129 -0
  118. cs2cap-1.0.0/cs2cap/models/price_history_meta.py +96 -0
  119. cs2cap-1.0.0/cs2cap/models/price_snapshot.py +107 -0
  120. cs2cap-1.0.0/cs2cap/models/price_snapshot_page.py +107 -0
  121. cs2cap-1.0.0/cs2cap/models/prices_filter_meta.py +106 -0
  122. cs2cap-1.0.0/cs2cap/models/prices_meta.py +95 -0
  123. cs2cap-1.0.0/cs2cap/models/prices_paginated_response_market_item.py +107 -0
  124. cs2cap-1.0.0/cs2cap/models/provider_features.py +99 -0
  125. cs2cap-1.0.0/cs2cap/models/provider_fees.py +106 -0
  126. cs2cap-1.0.0/cs2cap/models/provider_health.py +130 -0
  127. cs2cap-1.0.0/cs2cap/models/provider_info.py +128 -0
  128. cs2cap-1.0.0/cs2cap/models/providers.py +89 -0
  129. cs2cap-1.0.0/cs2cap/models/recent_sales_provider.py +43 -0
  130. cs2cap-1.0.0/cs2cap/models/sale_record_detail.py +160 -0
  131. cs2cap-1.0.0/cs2cap/models/sales_filters_meta.py +116 -0
  132. cs2cap-1.0.0/cs2cap/models/sales_history_response.py +111 -0
  133. cs2cap-1.0.0/cs2cap/models/sales_meta.py +98 -0
  134. cs2cap-1.0.0/cs2cap/models/steam_inventory_item.py +169 -0
  135. cs2cap-1.0.0/cs2cap/models/steam_inventory_response.py +97 -0
  136. cs2cap-1.0.0/cs2cap/models/sticker_info.py +96 -0
  137. cs2cap-1.0.0/cs2cap/models/transaction_create_request.py +153 -0
  138. cs2cap-1.0.0/cs2cap/models/transaction_out.py +141 -0
  139. cs2cap-1.0.0/cs2cap/models/transaction_update_request.py +160 -0
  140. cs2cap-1.0.0/cs2cap/models/validation_error_item.py +113 -0
  141. cs2cap-1.0.0/cs2cap/models/validation_error_response.py +97 -0
  142. cs2cap-1.0.0/cs2cap/models/watchlist_batch_create_response.py +97 -0
  143. cs2cap-1.0.0/cs2cap/models/watchlist_create_batch_request.py +88 -0
  144. cs2cap-1.0.0/cs2cap/models/watchlist_create_request.py +134 -0
  145. cs2cap-1.0.0/cs2cap/models/watchlist_create_response.py +134 -0
  146. cs2cap-1.0.0/cs2cap/models/watchlist_create_single_request.py +87 -0
  147. cs2cap-1.0.0/cs2cap/models/watchlist_item.py +101 -0
  148. cs2cap-1.0.0/cs2cap/models/watchlist_response.py +101 -0
  149. cs2cap-1.0.0/cs2cap/models/webhook_create_request.py +91 -0
  150. cs2cap-1.0.0/cs2cap/models/webhook_deliveries_response.py +101 -0
  151. cs2cap-1.0.0/cs2cap/models/webhook_delivery_attempt_summary.py +113 -0
  152. cs2cap-1.0.0/cs2cap/models/webhook_delivery_detail.py +144 -0
  153. cs2cap-1.0.0/cs2cap/models/webhook_delivery_summary.py +132 -0
  154. cs2cap-1.0.0/cs2cap/models/webhook_endpoint_summary.py +121 -0
  155. cs2cap-1.0.0/cs2cap/models/webhook_endpoints_response.py +95 -0
  156. cs2cap-1.0.0/cs2cap/models/webhook_secret_response.py +93 -0
  157. cs2cap-1.0.0/cs2cap/models/webhook_update_request.py +106 -0
  158. cs2cap-1.0.0/cs2cap/py.typed +0 -0
  159. cs2cap-1.0.0/cs2cap/rest.py +263 -0
  160. cs2cap-1.0.0/cs2cap.egg-info/PKG-INFO +301 -0
  161. cs2cap-1.0.0/cs2cap.egg-info/SOURCES.txt +314 -0
  162. cs2cap-1.0.0/cs2cap.egg-info/dependency_links.txt +1 -0
  163. cs2cap-1.0.0/cs2cap.egg-info/requires.txt +4 -0
  164. cs2cap-1.0.0/cs2cap.egg-info/top_level.txt +1 -0
  165. cs2cap-1.0.0/pyproject.toml +97 -0
  166. cs2cap-1.0.0/setup.cfg +7 -0
  167. cs2cap-1.0.0/setup.py +47 -0
  168. cs2cap-1.0.0/test/test_account_alerts_api.py +73 -0
  169. cs2cap-1.0.0/test/test_account_api_keys_api.py +73 -0
  170. cs2cap-1.0.0/test/test_account_mutation_response.py +52 -0
  171. cs2cap-1.0.0/test/test_account_watchlist_api.py +52 -0
  172. cs2cap-1.0.0/test/test_account_webhooks_api.py +80 -0
  173. cs2cap-1.0.0/test/test_alert_batch_create_request.py +52 -0
  174. cs2cap-1.0.0/test/test_alert_batch_create_response.py +70 -0
  175. cs2cap-1.0.0/test/test_alert_batch_create_result.py +57 -0
  176. cs2cap-1.0.0/test/test_alert_create_request.py +58 -0
  177. cs2cap-1.0.0/test/test_alert_definition.py +72 -0
  178. cs2cap-1.0.0/test/test_alert_delivery_summary.py +63 -0
  179. cs2cap-1.0.0/test/test_alert_event_summary.py +96 -0
  180. cs2cap-1.0.0/test/test_alert_events_response.py +66 -0
  181. cs2cap-1.0.0/test/test_alert_item_summary.py +55 -0
  182. cs2cap-1.0.0/test/test_alert_list_response.py +66 -0
  183. cs2cap-1.0.0/test/test_alert_update_request.py +53 -0
  184. cs2cap-1.0.0/test/test_all_providers.py +33 -0
  185. cs2cap-1.0.0/test/test_api_key_info.py +67 -0
  186. cs2cap-1.0.0/test/test_batch_bid_item.py +71 -0
  187. cs2cap-1.0.0/test/test_batch_bid_quote.py +58 -0
  188. cs2cap-1.0.0/test/test_batch_bids_meta.py +64 -0
  189. cs2cap-1.0.0/test/test_batch_bids_request.py +60 -0
  190. cs2cap-1.0.0/test/test_batch_bids_response.py +103 -0
  191. cs2cap-1.0.0/test/test_batch_price_item.py +71 -0
  192. cs2cap-1.0.0/test/test_batch_price_quote.py +58 -0
  193. cs2cap-1.0.0/test/test_batch_prices_meta.py +64 -0
  194. cs2cap-1.0.0/test/test_batch_prices_request.py +60 -0
  195. cs2cap-1.0.0/test/test_batch_prices_response.py +103 -0
  196. cs2cap-1.0.0/test/test_bids_api.py +52 -0
  197. cs2cap-1.0.0/test/test_bids_filter_meta.py +56 -0
  198. cs2cap-1.0.0/test/test_bids_meta.py +72 -0
  199. cs2cap-1.0.0/test/test_bids_response.py +98 -0
  200. cs2cap-1.0.0/test/test_buy_order_item.py +63 -0
  201. cs2cap-1.0.0/test/test_buy_order_provider.py +33 -0
  202. cs2cap-1.0.0/test/test_charm_info.py +53 -0
  203. cs2cap-1.0.0/test/test_child_api_key_create_request.py +54 -0
  204. cs2cap-1.0.0/test/test_child_api_key_create_response.py +81 -0
  205. cs2cap-1.0.0/test/test_child_api_key_detail_response.py +80 -0
  206. cs2cap-1.0.0/test/test_child_api_key_list_response.py +74 -0
  207. cs2cap-1.0.0/test/test_child_api_key_update_request.py +53 -0
  208. cs2cap-1.0.0/test/test_cursor_pagination_meta.py +58 -0
  209. cs2cap-1.0.0/test/test_error_response.py +54 -0
  210. cs2cap-1.0.0/test/test_foreign_exchange_api.py +38 -0
  211. cs2cap-1.0.0/test/test_fx_rates_response.py +57 -0
  212. cs2cap-1.0.0/test/test_indicator_data_coverage.py +60 -0
  213. cs2cap-1.0.0/test/test_indicator_momentum.py +62 -0
  214. cs2cap-1.0.0/test/test_indicator_signals.py +56 -0
  215. cs2cap-1.0.0/test/test_indicator_volatility.py +55 -0
  216. cs2cap-1.0.0/test/test_indicator_volume.py +53 -0
  217. cs2cap-1.0.0/test/test_inspect_info.py +53 -0
  218. cs2cap-1.0.0/test/test_inventory_api.py +45 -0
  219. cs2cap-1.0.0/test/test_item_out.py +75 -0
  220. cs2cap-1.0.0/test/test_items_api.py +45 -0
  221. cs2cap-1.0.0/test/test_items_catalog_summary.py +52 -0
  222. cs2cap-1.0.0/test/test_items_filter_metadata.py +104 -0
  223. cs2cap-1.0.0/test/test_items_metadata_response.py +110 -0
  224. cs2cap-1.0.0/test/test_items_paginated_response_item_out.py +118 -0
  225. cs2cap-1.0.0/test/test_items_pagination_meta.py +61 -0
  226. cs2cap-1.0.0/test/test_loc_inner.py +50 -0
  227. cs2cap-1.0.0/test/test_market_arbitrage_data.py +52 -0
  228. cs2cap-1.0.0/test/test_market_arbitrage_item.py +71 -0
  229. cs2cap-1.0.0/test/test_market_arbitrage_meta.py +58 -0
  230. cs2cap-1.0.0/test/test_market_arbitrage_response.py +76 -0
  231. cs2cap-1.0.0/test/test_market_index_group.py +60 -0
  232. cs2cap-1.0.0/test/test_market_indexes_data.py +54 -0
  233. cs2cap-1.0.0/test/test_market_indexes_meta.py +60 -0
  234. cs2cap-1.0.0/test/test_market_indexes_response.py +64 -0
  235. cs2cap-1.0.0/test/test_market_indicators_item_data.py +141 -0
  236. cs2cap-1.0.0/test/test_market_indicators_item_response.py +66 -0
  237. cs2cap-1.0.0/test/test_market_indicators_meta.py +61 -0
  238. cs2cap-1.0.0/test/test_market_intelligence_api.py +66 -0
  239. cs2cap-1.0.0/test/test_market_item.py +65 -0
  240. cs2cap-1.0.0/test/test_market_item_analytics_coverage.py +56 -0
  241. cs2cap-1.0.0/test/test_market_item_analytics_data.py +67 -0
  242. cs2cap-1.0.0/test/test_market_item_analytics_provider.py +69 -0
  243. cs2cap-1.0.0/test/test_market_item_analytics_response.py +62 -0
  244. cs2cap-1.0.0/test/test_market_item_analytics_summary.py +79 -0
  245. cs2cap-1.0.0/test/test_market_items_snapshot_data.py +64 -0
  246. cs2cap-1.0.0/test/test_market_items_snapshot_item.py +57 -0
  247. cs2cap-1.0.0/test/test_market_items_snapshot_response.py +76 -0
  248. cs2cap-1.0.0/test/test_market_meta.py +58 -0
  249. cs2cap-1.0.0/test/test_market_time_window_meta.py +52 -0
  250. cs2cap-1.0.0/test/test_pagination_meta.py +61 -0
  251. cs2cap-1.0.0/test/test_phase_name.py +33 -0
  252. cs2cap-1.0.0/test/test_portfolio_add_item_request.py +55 -0
  253. cs2cap-1.0.0/test/test_portfolio_api.py +129 -0
  254. cs2cap-1.0.0/test/test_portfolio_create.py +52 -0
  255. cs2cap-1.0.0/test/test_portfolio_data.py +96 -0
  256. cs2cap-1.0.0/test/test_portfolio_history_meta.py +67 -0
  257. cs2cap-1.0.0/test/test_portfolio_history_page.py +98 -0
  258. cs2cap-1.0.0/test/test_portfolio_history_point.py +60 -0
  259. cs2cap-1.0.0/test/test_portfolio_import_request.py +53 -0
  260. cs2cap-1.0.0/test/test_portfolio_import_result.py +60 -0
  261. cs2cap-1.0.0/test/test_portfolio_item_out.py +79 -0
  262. cs2cap-1.0.0/test/test_portfolio_line_item.py +68 -0
  263. cs2cap-1.0.0/test/test_portfolio_list_response.py +66 -0
  264. cs2cap-1.0.0/test/test_portfolio_meta.py +60 -0
  265. cs2cap-1.0.0/test/test_portfolio_out.py +60 -0
  266. cs2cap-1.0.0/test/test_portfolio_request.py +64 -0
  267. cs2cap-1.0.0/test/test_portfolio_request_item.py +54 -0
  268. cs2cap-1.0.0/test/test_portfolio_response.py +110 -0
  269. cs2cap-1.0.0/test/test_price_candle_item.py +69 -0
  270. cs2cap-1.0.0/test/test_price_candles_meta.py +64 -0
  271. cs2cap-1.0.0/test/test_price_candles_page.py +90 -0
  272. cs2cap-1.0.0/test/test_price_history_filters_meta.py +56 -0
  273. cs2cap-1.0.0/test/test_price_history_meta.py +68 -0
  274. cs2cap-1.0.0/test/test_price_snapshot.py +65 -0
  275. cs2cap-1.0.0/test/test_price_snapshot_page.py +90 -0
  276. cs2cap-1.0.0/test/test_prices_api.py +66 -0
  277. cs2cap-1.0.0/test/test_prices_filter_meta.py +55 -0
  278. cs2cap-1.0.0/test/test_prices_meta.py +70 -0
  279. cs2cap-1.0.0/test/test_prices_paginated_response_market_item.py +102 -0
  280. cs2cap-1.0.0/test/test_provider_features.py +52 -0
  281. cs2cap-1.0.0/test/test_provider_fees.py +53 -0
  282. cs2cap-1.0.0/test/test_provider_health.py +58 -0
  283. cs2cap-1.0.0/test/test_provider_info.py +87 -0
  284. cs2cap-1.0.0/test/test_providers.py +54 -0
  285. cs2cap-1.0.0/test/test_providers_api.py +38 -0
  286. cs2cap-1.0.0/test/test_recent_sales_provider.py +33 -0
  287. cs2cap-1.0.0/test/test_sale_record_detail.py +80 -0
  288. cs2cap-1.0.0/test/test_sales_api.py +38 -0
  289. cs2cap-1.0.0/test/test_sales_filters_meta.py +58 -0
  290. cs2cap-1.0.0/test/test_sales_history_response.py +118 -0
  291. cs2cap-1.0.0/test/test_sales_meta.py +76 -0
  292. cs2cap-1.0.0/test/test_steam_inventory_item.py +79 -0
  293. cs2cap-1.0.0/test/test_steam_inventory_response.py +104 -0
  294. cs2cap-1.0.0/test/test_sticker_info.py +55 -0
  295. cs2cap-1.0.0/test/test_transaction_create_request.py +66 -0
  296. cs2cap-1.0.0/test/test_transaction_out.py +75 -0
  297. cs2cap-1.0.0/test/test_transaction_update_request.py +59 -0
  298. cs2cap-1.0.0/test/test_validation_error_item.py +62 -0
  299. cs2cap-1.0.0/test/test_validation_error_response.py +71 -0
  300. cs2cap-1.0.0/test/test_watchlist_batch_create_response.py +68 -0
  301. cs2cap-1.0.0/test/test_watchlist_create_batch_request.py +56 -0
  302. cs2cap-1.0.0/test/test_watchlist_create_request.py +58 -0
  303. cs2cap-1.0.0/test/test_watchlist_create_response.py +77 -0
  304. cs2cap-1.0.0/test/test_watchlist_create_single_request.py +52 -0
  305. cs2cap-1.0.0/test/test_watchlist_item.py +59 -0
  306. cs2cap-1.0.0/test/test_watchlist_response.py +80 -0
  307. cs2cap-1.0.0/test/test_webhook_create_request.py +55 -0
  308. cs2cap-1.0.0/test/test_webhook_deliveries_response.py +96 -0
  309. cs2cap-1.0.0/test/test_webhook_delivery_attempt_summary.py +59 -0
  310. cs2cap-1.0.0/test/test_webhook_delivery_detail.py +92 -0
  311. cs2cap-1.0.0/test/test_webhook_delivery_summary.py +72 -0
  312. cs2cap-1.0.0/test/test_webhook_endpoint_summary.py +67 -0
  313. cs2cap-1.0.0/test/test_webhook_endpoints_response.py +76 -0
  314. cs2cap-1.0.0/test/test_webhook_secret_response.py +74 -0
  315. cs2cap-1.0.0/test/test_webhook_update_request.py +53 -0
cs2cap-1.0.0/PKG-INFO ADDED
@@ -0,0 +1,301 @@
1
+ Metadata-Version: 2.4
2
+ Name: cs2cap
3
+ Version: 1.0.0
4
+ Summary: CS2Cap market data API client
5
+ Home-page: https://cs2cap.com
6
+ Author: CS2Cap
7
+ Author-email: CS2Cap <support@cs2c.app>
8
+ License: MIT
9
+ Project-URL: Homepage, https://cs2cap.com
10
+ Project-URL: Repository, https://github.com/CS2Cap/SDKs
11
+ Project-URL: Documentation, https://docs.cs2c.app
12
+ Keywords: OpenAPI,OpenAPI-Generator,CS2Cap
13
+ Requires-Python: >=3.9
14
+ Description-Content-Type: text/markdown
15
+ Requires-Dist: urllib3<3.0.0,>=2.1.0
16
+ Requires-Dist: python-dateutil>=2.8.2
17
+ Requires-Dist: pydantic>=2
18
+ Requires-Dist: typing-extensions>=4.7.1
19
+ Dynamic: author
20
+ Dynamic: home-page
21
+
22
+ # cs2cap
23
+ CS2Cap aggregates and analyzes Counter-Strike 2 marketplace data across multiple providers via a unified REST API.
24
+
25
+ ## Requirements.
26
+
27
+ Python 3.9+
28
+
29
+ ## Installation
30
+
31
+ ```sh
32
+ pip install cs2cap
33
+ ```
34
+
35
+ Then import the package:
36
+ ```python
37
+ import cs2cap
38
+ ```
39
+
40
+ ## Getting Started
41
+
42
+ Please follow the [installation procedure](#installation--usage) and then run the following:
43
+
44
+ ```python
45
+
46
+ import cs2cap
47
+ from cs2cap.rest import ApiException
48
+ from pprint import pprint
49
+
50
+ # Defining the host is optional and defaults to https://api.cs2c.app
51
+ # See configuration.py for a list of all supported configuration parameters.
52
+ configuration = cs2cap.Configuration(
53
+ host = "https://api.cs2c.app"
54
+ )
55
+
56
+ # The client must configure the authentication and authorization parameters
57
+ # in accordance with the API server security policy.
58
+ # Examples for each auth method are provided below, use the example that
59
+ # satisfies your auth use case.
60
+
61
+ # Configure Bearer authorization: BearerAuth
62
+ configuration = cs2cap.Configuration(
63
+ access_token = os.environ["BEARER_TOKEN"]
64
+ )
65
+
66
+
67
+ # Enter a context with an instance of the API client
68
+ with cs2cap.ApiClient(configuration) as api_client:
69
+ # Create an instance of the API class
70
+ api_instance = cs2cap.AccountAPIKeysApi(api_client)
71
+ child_api_key_create_request = cs2cap.ChildAPIKeyCreateRequest() # ChildAPIKeyCreateRequest |
72
+
73
+ try:
74
+ # Create Sub Key
75
+ api_response = api_instance.create_sub_key(child_api_key_create_request)
76
+ print("The response of AccountAPIKeysApi->create_sub_key:\n")
77
+ pprint(api_response)
78
+ except ApiException as e:
79
+ print("Exception when calling AccountAPIKeysApi->create_sub_key: %s\n" % e)
80
+
81
+ ```
82
+
83
+ ## Documentation for API Endpoints
84
+
85
+ All URIs are relative to *https://api.cs2c.app*
86
+
87
+ Class | Method | HTTP request | Description
88
+ ------------ | ------------- | ------------- | -------------
89
+ *AccountAPIKeysApi* | [**create_sub_key**](docs/AccountAPIKeysApi.md#create_sub_key) | **POST** /v1/account/sub-keys | Create Sub Key
90
+ *AccountAPIKeysApi* | [**delete_sub_key**](docs/AccountAPIKeysApi.md#delete_sub_key) | **DELETE** /v1/account/sub-keys/{key_id} | Delete Sub Key
91
+ *AccountAPIKeysApi* | [**get_sub_key**](docs/AccountAPIKeysApi.md#get_sub_key) | **GET** /v1/account/sub-keys/{key_id} | Get Sub Key
92
+ *AccountAPIKeysApi* | [**list_sub_keys**](docs/AccountAPIKeysApi.md#list_sub_keys) | **GET** /v1/account/sub-keys | List Sub Keys
93
+ *AccountAPIKeysApi* | [**reissue_sub_key**](docs/AccountAPIKeysApi.md#reissue_sub_key) | **POST** /v1/account/sub-keys/{key_id}/reissue | Reissue Sub Key
94
+ *AccountAPIKeysApi* | [**update_sub_key**](docs/AccountAPIKeysApi.md#update_sub_key) | **PATCH** /v1/account/sub-keys/{key_id} | Update Sub Key
95
+ *AccountAlertsApi* | [**create_alert**](docs/AccountAlertsApi.md#create_alert) | **POST** /v1/account/alerts | Create Alert
96
+ *AccountAlertsApi* | [**create_alerts_batch**](docs/AccountAlertsApi.md#create_alerts_batch) | **POST** /v1/account/alerts/batch | Create Alerts Batch
97
+ *AccountAlertsApi* | [**delete_alert**](docs/AccountAlertsApi.md#delete_alert) | **DELETE** /v1/account/alerts/{alert_id} | Delete Alert
98
+ *AccountAlertsApi* | [**list_alert_events**](docs/AccountAlertsApi.md#list_alert_events) | **GET** /v1/account/alerts/events | List Alert Events
99
+ *AccountAlertsApi* | [**list_alerts**](docs/AccountAlertsApi.md#list_alerts) | **GET** /v1/account/alerts | List Alerts
100
+ *AccountAlertsApi* | [**update_alert**](docs/AccountAlertsApi.md#update_alert) | **PATCH** /v1/account/alerts/{alert_id} | Update Alert
101
+ *AccountWatchlistApi* | [**create_watchlist_entries**](docs/AccountWatchlistApi.md#create_watchlist_entries) | **POST** /v1/account/watchlist | Create Watchlist Entries
102
+ *AccountWatchlistApi* | [**delete_watchlist_entry**](docs/AccountWatchlistApi.md#delete_watchlist_entry) | **DELETE** /v1/account/watchlist/{item_id} | Delete Watchlist Entry
103
+ *AccountWatchlistApi* | [**list_watchlist**](docs/AccountWatchlistApi.md#list_watchlist) | **GET** /v1/account/watchlist | List Watchlist
104
+ *AccountWebhooksApi* | [**create_webhook**](docs/AccountWebhooksApi.md#create_webhook) | **POST** /v1/account/webhooks | Create Webhook
105
+ *AccountWebhooksApi* | [**delete_webhook**](docs/AccountWebhooksApi.md#delete_webhook) | **DELETE** /v1/account/webhooks/{webhook_id} | Delete Webhook
106
+ *AccountWebhooksApi* | [**get_webhook_delivery**](docs/AccountWebhooksApi.md#get_webhook_delivery) | **GET** /v1/account/webhooks/deliveries/{delivery_id} | Get Webhook Delivery
107
+ *AccountWebhooksApi* | [**list_webhook_deliveries**](docs/AccountWebhooksApi.md#list_webhook_deliveries) | **GET** /v1/account/webhooks/deliveries | List Webhook Deliveries
108
+ *AccountWebhooksApi* | [**list_webhooks**](docs/AccountWebhooksApi.md#list_webhooks) | **GET** /v1/account/webhooks | List Webhooks
109
+ *AccountWebhooksApi* | [**rotate_webhook_secret**](docs/AccountWebhooksApi.md#rotate_webhook_secret) | **POST** /v1/account/webhooks/{webhook_id}/rotate-secret | Rotate Webhook Secret
110
+ *AccountWebhooksApi* | [**update_webhook**](docs/AccountWebhooksApi.md#update_webhook) | **PATCH** /v1/account/webhooks/{webhook_id} | Update Webhook
111
+ *BidsApi* | [**batch_bid_lookup**](docs/BidsApi.md#batch_bid_lookup) | **POST** /v1/bids/batch | Batch Bid Lookup
112
+ *BidsApi* | [**list_bids**](docs/BidsApi.md#list_bids) | **GET** /v1/bids | List Bids
113
+ *BidsApi* | [**stream_full_bids_snapshot**](docs/BidsApi.md#stream_full_bids_snapshot) | **POST** /v1/bids | Stream Full Bids Snapshot
114
+ *ForeignExchangeApi* | [**get_fx_rates**](docs/ForeignExchangeApi.md#get_fx_rates) | **GET** /v1/fx | Get Fx Rates
115
+ *InventoryApi* | [**fetch_steam_inventory**](docs/InventoryApi.md#fetch_steam_inventory) | **GET** /v1/inventory/steam | Fetch Steam Inventory
116
+ *InventoryApi* | [**fetch_steam_inventory_by_steam_id**](docs/InventoryApi.md#fetch_steam_inventory_by_steam_id) | **GET** /v1/inventory/steam/lookup | Fetch Steam Inventory by Steam ID
117
+ *ItemsApi* | [**get_item_catalog_metadata**](docs/ItemsApi.md#get_item_catalog_metadata) | **GET** /v1/items/metadata | Get Item Catalog Metadata
118
+ *ItemsApi* | [**list_items**](docs/ItemsApi.md#list_items) | **GET** /v1/items | List Items
119
+ *MarketIntelligenceApi* | [**get_arbitrage_opportunities**](docs/MarketIntelligenceApi.md#get_arbitrage_opportunities) | **GET** /v1/market/arbitrage | Get Arbitrage Opportunities
120
+ *MarketIntelligenceApi* | [**get_indicators**](docs/MarketIntelligenceApi.md#get_indicators) | **GET** /v1/market/indicators | Get Indicators
121
+ *MarketIntelligenceApi* | [**get_item_analytics**](docs/MarketIntelligenceApi.md#get_item_analytics) | **GET** /v1/market/items/{item_id} | Get Item Analytics
122
+ *MarketIntelligenceApi* | [**get_market_analytics_snapshot**](docs/MarketIntelligenceApi.md#get_market_analytics_snapshot) | **GET** /v1/market/items | Get Market Analytics Snapshot
123
+ *MarketIntelligenceApi* | [**get_market_cap_indexes**](docs/MarketIntelligenceApi.md#get_market_cap_indexes) | **GET** /v1/market/indexes | Get Market Cap Indexes
124
+ *PortfolioApi* | [**add_item_to_portfolio**](docs/PortfolioApi.md#add_item_to_portfolio) | **POST** /v1/portfolio/{portfolio_id}/items | Add Item to Portfolio
125
+ *PortfolioApi* | [**add_transaction**](docs/PortfolioApi.md#add_transaction) | **POST** /v1/portfolio/{portfolio_id}/transactions | Add Transaction
126
+ *PortfolioApi* | [**create_portfolio**](docs/PortfolioApi.md#create_portfolio) | **POST** /v1/portfolio | Create Portfolio
127
+ *PortfolioApi* | [**delete_portfolio**](docs/PortfolioApi.md#delete_portfolio) | **DELETE** /v1/portfolio/{portfolio_id} | Delete Portfolio
128
+ *PortfolioApi* | [**delete_transaction**](docs/PortfolioApi.md#delete_transaction) | **DELETE** /v1/portfolio/{portfolio_id}/transactions/{transaction_id} | Delete Transaction
129
+ *PortfolioApi* | [**historical_saved_portfolio_valuation**](docs/PortfolioApi.md#historical_saved_portfolio_valuation) | **GET** /v1/portfolio/{portfolio_id}/history | Historical Saved Portfolio Valuation
130
+ *PortfolioApi* | [**import_steam_inventory**](docs/PortfolioApi.md#import_steam_inventory) | **POST** /v1/portfolio/{portfolio_id}/import | Import Steam Inventory
131
+ *PortfolioApi* | [**list_portfolio_items**](docs/PortfolioApi.md#list_portfolio_items) | **GET** /v1/portfolio/{portfolio_id}/items | List Portfolio Items
132
+ *PortfolioApi* | [**list_portfolios**](docs/PortfolioApi.md#list_portfolios) | **GET** /v1/portfolio | List Portfolios
133
+ *PortfolioApi* | [**list_transactions**](docs/PortfolioApi.md#list_transactions) | **GET** /v1/portfolio/{portfolio_id}/transactions | List Transactions
134
+ *PortfolioApi* | [**portfolio_valuation**](docs/PortfolioApi.md#portfolio_valuation) | **POST** /v1/portfolio/value | Portfolio Valuation
135
+ *PortfolioApi* | [**remove_item_from_portfolio**](docs/PortfolioApi.md#remove_item_from_portfolio) | **DELETE** /v1/portfolio/{portfolio_id}/items/{entry_id} | Remove Item from Portfolio
136
+ *PortfolioApi* | [**update_transaction**](docs/PortfolioApi.md#update_transaction) | **PATCH** /v1/portfolio/{portfolio_id}/transactions/{transaction_id} | Update Transaction
137
+ *PortfolioApi* | [**value_saved_portfolio**](docs/PortfolioApi.md#value_saved_portfolio) | **GET** /v1/portfolio/{portfolio_id}/value | Value Saved Portfolio
138
+ *PricesApi* | [**batch_price_lookup**](docs/PricesApi.md#batch_price_lookup) | **POST** /v1/prices/batch | Batch Price Lookup
139
+ *PricesApi* | [**list_prices**](docs/PricesApi.md#list_prices) | **GET** /v1/prices | List Prices
140
+ *PricesApi* | [**price_candles**](docs/PricesApi.md#price_candles) | **GET** /v1/prices/candles | Price Candles
141
+ *PricesApi* | [**price_history**](docs/PricesApi.md#price_history) | **GET** /v1/prices/history | Price History
142
+ *PricesApi* | [**stream_full_prices_snapshot**](docs/PricesApi.md#stream_full_prices_snapshot) | **POST** /v1/prices | Stream Full Prices Snapshot
143
+ *ProvidersApi* | [**list_providers**](docs/ProvidersApi.md#list_providers) | **GET** /v1/providers | List Providers
144
+ *SalesApi* | [**list_recent_sales**](docs/SalesApi.md#list_recent_sales) | **GET** /v1/sales | List Recent Sales
145
+
146
+
147
+ ## Documentation For Models
148
+
149
+ - [APIKeyInfo](docs/APIKeyInfo.md)
150
+ - [AccountMutationResponse](docs/AccountMutationResponse.md)
151
+ - [AlertBatchCreateRequest](docs/AlertBatchCreateRequest.md)
152
+ - [AlertBatchCreateResponse](docs/AlertBatchCreateResponse.md)
153
+ - [AlertBatchCreateResult](docs/AlertBatchCreateResult.md)
154
+ - [AlertCreateRequest](docs/AlertCreateRequest.md)
155
+ - [AlertDefinition](docs/AlertDefinition.md)
156
+ - [AlertDeliverySummary](docs/AlertDeliverySummary.md)
157
+ - [AlertEventSummary](docs/AlertEventSummary.md)
158
+ - [AlertEventsResponse](docs/AlertEventsResponse.md)
159
+ - [AlertItemSummary](docs/AlertItemSummary.md)
160
+ - [AlertListResponse](docs/AlertListResponse.md)
161
+ - [AlertUpdateRequest](docs/AlertUpdateRequest.md)
162
+ - [AllProviders](docs/AllProviders.md)
163
+ - [BatchBidItem](docs/BatchBidItem.md)
164
+ - [BatchBidQuote](docs/BatchBidQuote.md)
165
+ - [BatchBidsMeta](docs/BatchBidsMeta.md)
166
+ - [BatchBidsRequest](docs/BatchBidsRequest.md)
167
+ - [BatchBidsResponse](docs/BatchBidsResponse.md)
168
+ - [BatchPriceItem](docs/BatchPriceItem.md)
169
+ - [BatchPriceQuote](docs/BatchPriceQuote.md)
170
+ - [BatchPricesMeta](docs/BatchPricesMeta.md)
171
+ - [BatchPricesRequest](docs/BatchPricesRequest.md)
172
+ - [BatchPricesResponse](docs/BatchPricesResponse.md)
173
+ - [BidsFilterMeta](docs/BidsFilterMeta.md)
174
+ - [BidsMeta](docs/BidsMeta.md)
175
+ - [BidsResponse](docs/BidsResponse.md)
176
+ - [BuyOrderItem](docs/BuyOrderItem.md)
177
+ - [BuyOrderProvider](docs/BuyOrderProvider.md)
178
+ - [CharmInfo](docs/CharmInfo.md)
179
+ - [ChildAPIKeyCreateRequest](docs/ChildAPIKeyCreateRequest.md)
180
+ - [ChildAPIKeyCreateResponse](docs/ChildAPIKeyCreateResponse.md)
181
+ - [ChildAPIKeyDetailResponse](docs/ChildAPIKeyDetailResponse.md)
182
+ - [ChildAPIKeyListResponse](docs/ChildAPIKeyListResponse.md)
183
+ - [ChildAPIKeyUpdateRequest](docs/ChildAPIKeyUpdateRequest.md)
184
+ - [CursorPaginationMeta](docs/CursorPaginationMeta.md)
185
+ - [ErrorResponse](docs/ErrorResponse.md)
186
+ - [FXRatesResponse](docs/FXRatesResponse.md)
187
+ - [IndicatorDataCoverage](docs/IndicatorDataCoverage.md)
188
+ - [IndicatorMomentum](docs/IndicatorMomentum.md)
189
+ - [IndicatorSignals](docs/IndicatorSignals.md)
190
+ - [IndicatorVolatility](docs/IndicatorVolatility.md)
191
+ - [IndicatorVolume](docs/IndicatorVolume.md)
192
+ - [InspectInfo](docs/InspectInfo.md)
193
+ - [ItemOut](docs/ItemOut.md)
194
+ - [ItemsCatalogSummary](docs/ItemsCatalogSummary.md)
195
+ - [ItemsFilterMetadata](docs/ItemsFilterMetadata.md)
196
+ - [ItemsMetadataResponse](docs/ItemsMetadataResponse.md)
197
+ - [ItemsPaginatedResponseItemOut](docs/ItemsPaginatedResponseItemOut.md)
198
+ - [ItemsPaginationMeta](docs/ItemsPaginationMeta.md)
199
+ - [LocInner](docs/LocInner.md)
200
+ - [MarketArbitrageData](docs/MarketArbitrageData.md)
201
+ - [MarketArbitrageItem](docs/MarketArbitrageItem.md)
202
+ - [MarketArbitrageMeta](docs/MarketArbitrageMeta.md)
203
+ - [MarketArbitrageResponse](docs/MarketArbitrageResponse.md)
204
+ - [MarketIndexGroup](docs/MarketIndexGroup.md)
205
+ - [MarketIndexesData](docs/MarketIndexesData.md)
206
+ - [MarketIndexesMeta](docs/MarketIndexesMeta.md)
207
+ - [MarketIndexesResponse](docs/MarketIndexesResponse.md)
208
+ - [MarketIndicatorsItemData](docs/MarketIndicatorsItemData.md)
209
+ - [MarketIndicatorsItemResponse](docs/MarketIndicatorsItemResponse.md)
210
+ - [MarketIndicatorsMeta](docs/MarketIndicatorsMeta.md)
211
+ - [MarketItem](docs/MarketItem.md)
212
+ - [MarketItemAnalyticsCoverage](docs/MarketItemAnalyticsCoverage.md)
213
+ - [MarketItemAnalyticsData](docs/MarketItemAnalyticsData.md)
214
+ - [MarketItemAnalyticsProvider](docs/MarketItemAnalyticsProvider.md)
215
+ - [MarketItemAnalyticsResponse](docs/MarketItemAnalyticsResponse.md)
216
+ - [MarketItemAnalyticsSummary](docs/MarketItemAnalyticsSummary.md)
217
+ - [MarketItemsSnapshotData](docs/MarketItemsSnapshotData.md)
218
+ - [MarketItemsSnapshotItem](docs/MarketItemsSnapshotItem.md)
219
+ - [MarketItemsSnapshotResponse](docs/MarketItemsSnapshotResponse.md)
220
+ - [MarketMeta](docs/MarketMeta.md)
221
+ - [MarketTimeWindowMeta](docs/MarketTimeWindowMeta.md)
222
+ - [PaginationMeta](docs/PaginationMeta.md)
223
+ - [PhaseName](docs/PhaseName.md)
224
+ - [PortfolioAddItemRequest](docs/PortfolioAddItemRequest.md)
225
+ - [PortfolioCreate](docs/PortfolioCreate.md)
226
+ - [PortfolioData](docs/PortfolioData.md)
227
+ - [PortfolioHistoryMeta](docs/PortfolioHistoryMeta.md)
228
+ - [PortfolioHistoryPage](docs/PortfolioHistoryPage.md)
229
+ - [PortfolioHistoryPoint](docs/PortfolioHistoryPoint.md)
230
+ - [PortfolioImportRequest](docs/PortfolioImportRequest.md)
231
+ - [PortfolioImportResult](docs/PortfolioImportResult.md)
232
+ - [PortfolioItemOut](docs/PortfolioItemOut.md)
233
+ - [PortfolioLineItem](docs/PortfolioLineItem.md)
234
+ - [PortfolioListResponse](docs/PortfolioListResponse.md)
235
+ - [PortfolioMeta](docs/PortfolioMeta.md)
236
+ - [PortfolioOut](docs/PortfolioOut.md)
237
+ - [PortfolioRequest](docs/PortfolioRequest.md)
238
+ - [PortfolioRequestItem](docs/PortfolioRequestItem.md)
239
+ - [PortfolioResponse](docs/PortfolioResponse.md)
240
+ - [PriceCandleItem](docs/PriceCandleItem.md)
241
+ - [PriceCandlesMeta](docs/PriceCandlesMeta.md)
242
+ - [PriceCandlesPage](docs/PriceCandlesPage.md)
243
+ - [PriceHistoryFiltersMeta](docs/PriceHistoryFiltersMeta.md)
244
+ - [PriceHistoryMeta](docs/PriceHistoryMeta.md)
245
+ - [PriceSnapshot](docs/PriceSnapshot.md)
246
+ - [PriceSnapshotPage](docs/PriceSnapshotPage.md)
247
+ - [PricesFilterMeta](docs/PricesFilterMeta.md)
248
+ - [PricesMeta](docs/PricesMeta.md)
249
+ - [PricesPaginatedResponseMarketItem](docs/PricesPaginatedResponseMarketItem.md)
250
+ - [ProviderFeatures](docs/ProviderFeatures.md)
251
+ - [ProviderFees](docs/ProviderFees.md)
252
+ - [ProviderHealth](docs/ProviderHealth.md)
253
+ - [ProviderInfo](docs/ProviderInfo.md)
254
+ - [Providers](docs/Providers.md)
255
+ - [RecentSalesProvider](docs/RecentSalesProvider.md)
256
+ - [SaleRecordDetail](docs/SaleRecordDetail.md)
257
+ - [SalesFiltersMeta](docs/SalesFiltersMeta.md)
258
+ - [SalesHistoryResponse](docs/SalesHistoryResponse.md)
259
+ - [SalesMeta](docs/SalesMeta.md)
260
+ - [SteamInventoryItem](docs/SteamInventoryItem.md)
261
+ - [SteamInventoryResponse](docs/SteamInventoryResponse.md)
262
+ - [StickerInfo](docs/StickerInfo.md)
263
+ - [TransactionCreateRequest](docs/TransactionCreateRequest.md)
264
+ - [TransactionOut](docs/TransactionOut.md)
265
+ - [TransactionUpdateRequest](docs/TransactionUpdateRequest.md)
266
+ - [ValidationErrorItem](docs/ValidationErrorItem.md)
267
+ - [ValidationErrorResponse](docs/ValidationErrorResponse.md)
268
+ - [WatchlistBatchCreateResponse](docs/WatchlistBatchCreateResponse.md)
269
+ - [WatchlistCreateBatchRequest](docs/WatchlistCreateBatchRequest.md)
270
+ - [WatchlistCreateRequest](docs/WatchlistCreateRequest.md)
271
+ - [WatchlistCreateResponse](docs/WatchlistCreateResponse.md)
272
+ - [WatchlistCreateSingleRequest](docs/WatchlistCreateSingleRequest.md)
273
+ - [WatchlistItem](docs/WatchlistItem.md)
274
+ - [WatchlistResponse](docs/WatchlistResponse.md)
275
+ - [WebhookCreateRequest](docs/WebhookCreateRequest.md)
276
+ - [WebhookDeliveriesResponse](docs/WebhookDeliveriesResponse.md)
277
+ - [WebhookDeliveryAttemptSummary](docs/WebhookDeliveryAttemptSummary.md)
278
+ - [WebhookDeliveryDetail](docs/WebhookDeliveryDetail.md)
279
+ - [WebhookDeliverySummary](docs/WebhookDeliverySummary.md)
280
+ - [WebhookEndpointSummary](docs/WebhookEndpointSummary.md)
281
+ - [WebhookEndpointsResponse](docs/WebhookEndpointsResponse.md)
282
+ - [WebhookSecretResponse](docs/WebhookSecretResponse.md)
283
+ - [WebhookUpdateRequest](docs/WebhookUpdateRequest.md)
284
+
285
+
286
+ <a id="documentation-for-authorization"></a>
287
+ ## Documentation For Authorization
288
+
289
+
290
+ Authentication schemes defined for the API:
291
+ <a id="BearerAuth"></a>
292
+ ### BearerAuth
293
+
294
+ - **Type**: Bearer authentication
295
+
296
+
297
+ ## Author
298
+
299
+
300
+
301
+
cs2cap-1.0.0/README.md ADDED
@@ -0,0 +1,280 @@
1
+ # cs2cap
2
+ CS2Cap aggregates and analyzes Counter-Strike 2 marketplace data across multiple providers via a unified REST API.
3
+
4
+ ## Requirements.
5
+
6
+ Python 3.9+
7
+
8
+ ## Installation
9
+
10
+ ```sh
11
+ pip install cs2cap
12
+ ```
13
+
14
+ Then import the package:
15
+ ```python
16
+ import cs2cap
17
+ ```
18
+
19
+ ## Getting Started
20
+
21
+ Please follow the [installation procedure](#installation--usage) and then run the following:
22
+
23
+ ```python
24
+
25
+ import cs2cap
26
+ from cs2cap.rest import ApiException
27
+ from pprint import pprint
28
+
29
+ # Defining the host is optional and defaults to https://api.cs2c.app
30
+ # See configuration.py for a list of all supported configuration parameters.
31
+ configuration = cs2cap.Configuration(
32
+ host = "https://api.cs2c.app"
33
+ )
34
+
35
+ # The client must configure the authentication and authorization parameters
36
+ # in accordance with the API server security policy.
37
+ # Examples for each auth method are provided below, use the example that
38
+ # satisfies your auth use case.
39
+
40
+ # Configure Bearer authorization: BearerAuth
41
+ configuration = cs2cap.Configuration(
42
+ access_token = os.environ["BEARER_TOKEN"]
43
+ )
44
+
45
+
46
+ # Enter a context with an instance of the API client
47
+ with cs2cap.ApiClient(configuration) as api_client:
48
+ # Create an instance of the API class
49
+ api_instance = cs2cap.AccountAPIKeysApi(api_client)
50
+ child_api_key_create_request = cs2cap.ChildAPIKeyCreateRequest() # ChildAPIKeyCreateRequest |
51
+
52
+ try:
53
+ # Create Sub Key
54
+ api_response = api_instance.create_sub_key(child_api_key_create_request)
55
+ print("The response of AccountAPIKeysApi->create_sub_key:\n")
56
+ pprint(api_response)
57
+ except ApiException as e:
58
+ print("Exception when calling AccountAPIKeysApi->create_sub_key: %s\n" % e)
59
+
60
+ ```
61
+
62
+ ## Documentation for API Endpoints
63
+
64
+ All URIs are relative to *https://api.cs2c.app*
65
+
66
+ Class | Method | HTTP request | Description
67
+ ------------ | ------------- | ------------- | -------------
68
+ *AccountAPIKeysApi* | [**create_sub_key**](docs/AccountAPIKeysApi.md#create_sub_key) | **POST** /v1/account/sub-keys | Create Sub Key
69
+ *AccountAPIKeysApi* | [**delete_sub_key**](docs/AccountAPIKeysApi.md#delete_sub_key) | **DELETE** /v1/account/sub-keys/{key_id} | Delete Sub Key
70
+ *AccountAPIKeysApi* | [**get_sub_key**](docs/AccountAPIKeysApi.md#get_sub_key) | **GET** /v1/account/sub-keys/{key_id} | Get Sub Key
71
+ *AccountAPIKeysApi* | [**list_sub_keys**](docs/AccountAPIKeysApi.md#list_sub_keys) | **GET** /v1/account/sub-keys | List Sub Keys
72
+ *AccountAPIKeysApi* | [**reissue_sub_key**](docs/AccountAPIKeysApi.md#reissue_sub_key) | **POST** /v1/account/sub-keys/{key_id}/reissue | Reissue Sub Key
73
+ *AccountAPIKeysApi* | [**update_sub_key**](docs/AccountAPIKeysApi.md#update_sub_key) | **PATCH** /v1/account/sub-keys/{key_id} | Update Sub Key
74
+ *AccountAlertsApi* | [**create_alert**](docs/AccountAlertsApi.md#create_alert) | **POST** /v1/account/alerts | Create Alert
75
+ *AccountAlertsApi* | [**create_alerts_batch**](docs/AccountAlertsApi.md#create_alerts_batch) | **POST** /v1/account/alerts/batch | Create Alerts Batch
76
+ *AccountAlertsApi* | [**delete_alert**](docs/AccountAlertsApi.md#delete_alert) | **DELETE** /v1/account/alerts/{alert_id} | Delete Alert
77
+ *AccountAlertsApi* | [**list_alert_events**](docs/AccountAlertsApi.md#list_alert_events) | **GET** /v1/account/alerts/events | List Alert Events
78
+ *AccountAlertsApi* | [**list_alerts**](docs/AccountAlertsApi.md#list_alerts) | **GET** /v1/account/alerts | List Alerts
79
+ *AccountAlertsApi* | [**update_alert**](docs/AccountAlertsApi.md#update_alert) | **PATCH** /v1/account/alerts/{alert_id} | Update Alert
80
+ *AccountWatchlistApi* | [**create_watchlist_entries**](docs/AccountWatchlistApi.md#create_watchlist_entries) | **POST** /v1/account/watchlist | Create Watchlist Entries
81
+ *AccountWatchlistApi* | [**delete_watchlist_entry**](docs/AccountWatchlistApi.md#delete_watchlist_entry) | **DELETE** /v1/account/watchlist/{item_id} | Delete Watchlist Entry
82
+ *AccountWatchlistApi* | [**list_watchlist**](docs/AccountWatchlistApi.md#list_watchlist) | **GET** /v1/account/watchlist | List Watchlist
83
+ *AccountWebhooksApi* | [**create_webhook**](docs/AccountWebhooksApi.md#create_webhook) | **POST** /v1/account/webhooks | Create Webhook
84
+ *AccountWebhooksApi* | [**delete_webhook**](docs/AccountWebhooksApi.md#delete_webhook) | **DELETE** /v1/account/webhooks/{webhook_id} | Delete Webhook
85
+ *AccountWebhooksApi* | [**get_webhook_delivery**](docs/AccountWebhooksApi.md#get_webhook_delivery) | **GET** /v1/account/webhooks/deliveries/{delivery_id} | Get Webhook Delivery
86
+ *AccountWebhooksApi* | [**list_webhook_deliveries**](docs/AccountWebhooksApi.md#list_webhook_deliveries) | **GET** /v1/account/webhooks/deliveries | List Webhook Deliveries
87
+ *AccountWebhooksApi* | [**list_webhooks**](docs/AccountWebhooksApi.md#list_webhooks) | **GET** /v1/account/webhooks | List Webhooks
88
+ *AccountWebhooksApi* | [**rotate_webhook_secret**](docs/AccountWebhooksApi.md#rotate_webhook_secret) | **POST** /v1/account/webhooks/{webhook_id}/rotate-secret | Rotate Webhook Secret
89
+ *AccountWebhooksApi* | [**update_webhook**](docs/AccountWebhooksApi.md#update_webhook) | **PATCH** /v1/account/webhooks/{webhook_id} | Update Webhook
90
+ *BidsApi* | [**batch_bid_lookup**](docs/BidsApi.md#batch_bid_lookup) | **POST** /v1/bids/batch | Batch Bid Lookup
91
+ *BidsApi* | [**list_bids**](docs/BidsApi.md#list_bids) | **GET** /v1/bids | List Bids
92
+ *BidsApi* | [**stream_full_bids_snapshot**](docs/BidsApi.md#stream_full_bids_snapshot) | **POST** /v1/bids | Stream Full Bids Snapshot
93
+ *ForeignExchangeApi* | [**get_fx_rates**](docs/ForeignExchangeApi.md#get_fx_rates) | **GET** /v1/fx | Get Fx Rates
94
+ *InventoryApi* | [**fetch_steam_inventory**](docs/InventoryApi.md#fetch_steam_inventory) | **GET** /v1/inventory/steam | Fetch Steam Inventory
95
+ *InventoryApi* | [**fetch_steam_inventory_by_steam_id**](docs/InventoryApi.md#fetch_steam_inventory_by_steam_id) | **GET** /v1/inventory/steam/lookup | Fetch Steam Inventory by Steam ID
96
+ *ItemsApi* | [**get_item_catalog_metadata**](docs/ItemsApi.md#get_item_catalog_metadata) | **GET** /v1/items/metadata | Get Item Catalog Metadata
97
+ *ItemsApi* | [**list_items**](docs/ItemsApi.md#list_items) | **GET** /v1/items | List Items
98
+ *MarketIntelligenceApi* | [**get_arbitrage_opportunities**](docs/MarketIntelligenceApi.md#get_arbitrage_opportunities) | **GET** /v1/market/arbitrage | Get Arbitrage Opportunities
99
+ *MarketIntelligenceApi* | [**get_indicators**](docs/MarketIntelligenceApi.md#get_indicators) | **GET** /v1/market/indicators | Get Indicators
100
+ *MarketIntelligenceApi* | [**get_item_analytics**](docs/MarketIntelligenceApi.md#get_item_analytics) | **GET** /v1/market/items/{item_id} | Get Item Analytics
101
+ *MarketIntelligenceApi* | [**get_market_analytics_snapshot**](docs/MarketIntelligenceApi.md#get_market_analytics_snapshot) | **GET** /v1/market/items | Get Market Analytics Snapshot
102
+ *MarketIntelligenceApi* | [**get_market_cap_indexes**](docs/MarketIntelligenceApi.md#get_market_cap_indexes) | **GET** /v1/market/indexes | Get Market Cap Indexes
103
+ *PortfolioApi* | [**add_item_to_portfolio**](docs/PortfolioApi.md#add_item_to_portfolio) | **POST** /v1/portfolio/{portfolio_id}/items | Add Item to Portfolio
104
+ *PortfolioApi* | [**add_transaction**](docs/PortfolioApi.md#add_transaction) | **POST** /v1/portfolio/{portfolio_id}/transactions | Add Transaction
105
+ *PortfolioApi* | [**create_portfolio**](docs/PortfolioApi.md#create_portfolio) | **POST** /v1/portfolio | Create Portfolio
106
+ *PortfolioApi* | [**delete_portfolio**](docs/PortfolioApi.md#delete_portfolio) | **DELETE** /v1/portfolio/{portfolio_id} | Delete Portfolio
107
+ *PortfolioApi* | [**delete_transaction**](docs/PortfolioApi.md#delete_transaction) | **DELETE** /v1/portfolio/{portfolio_id}/transactions/{transaction_id} | Delete Transaction
108
+ *PortfolioApi* | [**historical_saved_portfolio_valuation**](docs/PortfolioApi.md#historical_saved_portfolio_valuation) | **GET** /v1/portfolio/{portfolio_id}/history | Historical Saved Portfolio Valuation
109
+ *PortfolioApi* | [**import_steam_inventory**](docs/PortfolioApi.md#import_steam_inventory) | **POST** /v1/portfolio/{portfolio_id}/import | Import Steam Inventory
110
+ *PortfolioApi* | [**list_portfolio_items**](docs/PortfolioApi.md#list_portfolio_items) | **GET** /v1/portfolio/{portfolio_id}/items | List Portfolio Items
111
+ *PortfolioApi* | [**list_portfolios**](docs/PortfolioApi.md#list_portfolios) | **GET** /v1/portfolio | List Portfolios
112
+ *PortfolioApi* | [**list_transactions**](docs/PortfolioApi.md#list_transactions) | **GET** /v1/portfolio/{portfolio_id}/transactions | List Transactions
113
+ *PortfolioApi* | [**portfolio_valuation**](docs/PortfolioApi.md#portfolio_valuation) | **POST** /v1/portfolio/value | Portfolio Valuation
114
+ *PortfolioApi* | [**remove_item_from_portfolio**](docs/PortfolioApi.md#remove_item_from_portfolio) | **DELETE** /v1/portfolio/{portfolio_id}/items/{entry_id} | Remove Item from Portfolio
115
+ *PortfolioApi* | [**update_transaction**](docs/PortfolioApi.md#update_transaction) | **PATCH** /v1/portfolio/{portfolio_id}/transactions/{transaction_id} | Update Transaction
116
+ *PortfolioApi* | [**value_saved_portfolio**](docs/PortfolioApi.md#value_saved_portfolio) | **GET** /v1/portfolio/{portfolio_id}/value | Value Saved Portfolio
117
+ *PricesApi* | [**batch_price_lookup**](docs/PricesApi.md#batch_price_lookup) | **POST** /v1/prices/batch | Batch Price Lookup
118
+ *PricesApi* | [**list_prices**](docs/PricesApi.md#list_prices) | **GET** /v1/prices | List Prices
119
+ *PricesApi* | [**price_candles**](docs/PricesApi.md#price_candles) | **GET** /v1/prices/candles | Price Candles
120
+ *PricesApi* | [**price_history**](docs/PricesApi.md#price_history) | **GET** /v1/prices/history | Price History
121
+ *PricesApi* | [**stream_full_prices_snapshot**](docs/PricesApi.md#stream_full_prices_snapshot) | **POST** /v1/prices | Stream Full Prices Snapshot
122
+ *ProvidersApi* | [**list_providers**](docs/ProvidersApi.md#list_providers) | **GET** /v1/providers | List Providers
123
+ *SalesApi* | [**list_recent_sales**](docs/SalesApi.md#list_recent_sales) | **GET** /v1/sales | List Recent Sales
124
+
125
+
126
+ ## Documentation For Models
127
+
128
+ - [APIKeyInfo](docs/APIKeyInfo.md)
129
+ - [AccountMutationResponse](docs/AccountMutationResponse.md)
130
+ - [AlertBatchCreateRequest](docs/AlertBatchCreateRequest.md)
131
+ - [AlertBatchCreateResponse](docs/AlertBatchCreateResponse.md)
132
+ - [AlertBatchCreateResult](docs/AlertBatchCreateResult.md)
133
+ - [AlertCreateRequest](docs/AlertCreateRequest.md)
134
+ - [AlertDefinition](docs/AlertDefinition.md)
135
+ - [AlertDeliverySummary](docs/AlertDeliverySummary.md)
136
+ - [AlertEventSummary](docs/AlertEventSummary.md)
137
+ - [AlertEventsResponse](docs/AlertEventsResponse.md)
138
+ - [AlertItemSummary](docs/AlertItemSummary.md)
139
+ - [AlertListResponse](docs/AlertListResponse.md)
140
+ - [AlertUpdateRequest](docs/AlertUpdateRequest.md)
141
+ - [AllProviders](docs/AllProviders.md)
142
+ - [BatchBidItem](docs/BatchBidItem.md)
143
+ - [BatchBidQuote](docs/BatchBidQuote.md)
144
+ - [BatchBidsMeta](docs/BatchBidsMeta.md)
145
+ - [BatchBidsRequest](docs/BatchBidsRequest.md)
146
+ - [BatchBidsResponse](docs/BatchBidsResponse.md)
147
+ - [BatchPriceItem](docs/BatchPriceItem.md)
148
+ - [BatchPriceQuote](docs/BatchPriceQuote.md)
149
+ - [BatchPricesMeta](docs/BatchPricesMeta.md)
150
+ - [BatchPricesRequest](docs/BatchPricesRequest.md)
151
+ - [BatchPricesResponse](docs/BatchPricesResponse.md)
152
+ - [BidsFilterMeta](docs/BidsFilterMeta.md)
153
+ - [BidsMeta](docs/BidsMeta.md)
154
+ - [BidsResponse](docs/BidsResponse.md)
155
+ - [BuyOrderItem](docs/BuyOrderItem.md)
156
+ - [BuyOrderProvider](docs/BuyOrderProvider.md)
157
+ - [CharmInfo](docs/CharmInfo.md)
158
+ - [ChildAPIKeyCreateRequest](docs/ChildAPIKeyCreateRequest.md)
159
+ - [ChildAPIKeyCreateResponse](docs/ChildAPIKeyCreateResponse.md)
160
+ - [ChildAPIKeyDetailResponse](docs/ChildAPIKeyDetailResponse.md)
161
+ - [ChildAPIKeyListResponse](docs/ChildAPIKeyListResponse.md)
162
+ - [ChildAPIKeyUpdateRequest](docs/ChildAPIKeyUpdateRequest.md)
163
+ - [CursorPaginationMeta](docs/CursorPaginationMeta.md)
164
+ - [ErrorResponse](docs/ErrorResponse.md)
165
+ - [FXRatesResponse](docs/FXRatesResponse.md)
166
+ - [IndicatorDataCoverage](docs/IndicatorDataCoverage.md)
167
+ - [IndicatorMomentum](docs/IndicatorMomentum.md)
168
+ - [IndicatorSignals](docs/IndicatorSignals.md)
169
+ - [IndicatorVolatility](docs/IndicatorVolatility.md)
170
+ - [IndicatorVolume](docs/IndicatorVolume.md)
171
+ - [InspectInfo](docs/InspectInfo.md)
172
+ - [ItemOut](docs/ItemOut.md)
173
+ - [ItemsCatalogSummary](docs/ItemsCatalogSummary.md)
174
+ - [ItemsFilterMetadata](docs/ItemsFilterMetadata.md)
175
+ - [ItemsMetadataResponse](docs/ItemsMetadataResponse.md)
176
+ - [ItemsPaginatedResponseItemOut](docs/ItemsPaginatedResponseItemOut.md)
177
+ - [ItemsPaginationMeta](docs/ItemsPaginationMeta.md)
178
+ - [LocInner](docs/LocInner.md)
179
+ - [MarketArbitrageData](docs/MarketArbitrageData.md)
180
+ - [MarketArbitrageItem](docs/MarketArbitrageItem.md)
181
+ - [MarketArbitrageMeta](docs/MarketArbitrageMeta.md)
182
+ - [MarketArbitrageResponse](docs/MarketArbitrageResponse.md)
183
+ - [MarketIndexGroup](docs/MarketIndexGroup.md)
184
+ - [MarketIndexesData](docs/MarketIndexesData.md)
185
+ - [MarketIndexesMeta](docs/MarketIndexesMeta.md)
186
+ - [MarketIndexesResponse](docs/MarketIndexesResponse.md)
187
+ - [MarketIndicatorsItemData](docs/MarketIndicatorsItemData.md)
188
+ - [MarketIndicatorsItemResponse](docs/MarketIndicatorsItemResponse.md)
189
+ - [MarketIndicatorsMeta](docs/MarketIndicatorsMeta.md)
190
+ - [MarketItem](docs/MarketItem.md)
191
+ - [MarketItemAnalyticsCoverage](docs/MarketItemAnalyticsCoverage.md)
192
+ - [MarketItemAnalyticsData](docs/MarketItemAnalyticsData.md)
193
+ - [MarketItemAnalyticsProvider](docs/MarketItemAnalyticsProvider.md)
194
+ - [MarketItemAnalyticsResponse](docs/MarketItemAnalyticsResponse.md)
195
+ - [MarketItemAnalyticsSummary](docs/MarketItemAnalyticsSummary.md)
196
+ - [MarketItemsSnapshotData](docs/MarketItemsSnapshotData.md)
197
+ - [MarketItemsSnapshotItem](docs/MarketItemsSnapshotItem.md)
198
+ - [MarketItemsSnapshotResponse](docs/MarketItemsSnapshotResponse.md)
199
+ - [MarketMeta](docs/MarketMeta.md)
200
+ - [MarketTimeWindowMeta](docs/MarketTimeWindowMeta.md)
201
+ - [PaginationMeta](docs/PaginationMeta.md)
202
+ - [PhaseName](docs/PhaseName.md)
203
+ - [PortfolioAddItemRequest](docs/PortfolioAddItemRequest.md)
204
+ - [PortfolioCreate](docs/PortfolioCreate.md)
205
+ - [PortfolioData](docs/PortfolioData.md)
206
+ - [PortfolioHistoryMeta](docs/PortfolioHistoryMeta.md)
207
+ - [PortfolioHistoryPage](docs/PortfolioHistoryPage.md)
208
+ - [PortfolioHistoryPoint](docs/PortfolioHistoryPoint.md)
209
+ - [PortfolioImportRequest](docs/PortfolioImportRequest.md)
210
+ - [PortfolioImportResult](docs/PortfolioImportResult.md)
211
+ - [PortfolioItemOut](docs/PortfolioItemOut.md)
212
+ - [PortfolioLineItem](docs/PortfolioLineItem.md)
213
+ - [PortfolioListResponse](docs/PortfolioListResponse.md)
214
+ - [PortfolioMeta](docs/PortfolioMeta.md)
215
+ - [PortfolioOut](docs/PortfolioOut.md)
216
+ - [PortfolioRequest](docs/PortfolioRequest.md)
217
+ - [PortfolioRequestItem](docs/PortfolioRequestItem.md)
218
+ - [PortfolioResponse](docs/PortfolioResponse.md)
219
+ - [PriceCandleItem](docs/PriceCandleItem.md)
220
+ - [PriceCandlesMeta](docs/PriceCandlesMeta.md)
221
+ - [PriceCandlesPage](docs/PriceCandlesPage.md)
222
+ - [PriceHistoryFiltersMeta](docs/PriceHistoryFiltersMeta.md)
223
+ - [PriceHistoryMeta](docs/PriceHistoryMeta.md)
224
+ - [PriceSnapshot](docs/PriceSnapshot.md)
225
+ - [PriceSnapshotPage](docs/PriceSnapshotPage.md)
226
+ - [PricesFilterMeta](docs/PricesFilterMeta.md)
227
+ - [PricesMeta](docs/PricesMeta.md)
228
+ - [PricesPaginatedResponseMarketItem](docs/PricesPaginatedResponseMarketItem.md)
229
+ - [ProviderFeatures](docs/ProviderFeatures.md)
230
+ - [ProviderFees](docs/ProviderFees.md)
231
+ - [ProviderHealth](docs/ProviderHealth.md)
232
+ - [ProviderInfo](docs/ProviderInfo.md)
233
+ - [Providers](docs/Providers.md)
234
+ - [RecentSalesProvider](docs/RecentSalesProvider.md)
235
+ - [SaleRecordDetail](docs/SaleRecordDetail.md)
236
+ - [SalesFiltersMeta](docs/SalesFiltersMeta.md)
237
+ - [SalesHistoryResponse](docs/SalesHistoryResponse.md)
238
+ - [SalesMeta](docs/SalesMeta.md)
239
+ - [SteamInventoryItem](docs/SteamInventoryItem.md)
240
+ - [SteamInventoryResponse](docs/SteamInventoryResponse.md)
241
+ - [StickerInfo](docs/StickerInfo.md)
242
+ - [TransactionCreateRequest](docs/TransactionCreateRequest.md)
243
+ - [TransactionOut](docs/TransactionOut.md)
244
+ - [TransactionUpdateRequest](docs/TransactionUpdateRequest.md)
245
+ - [ValidationErrorItem](docs/ValidationErrorItem.md)
246
+ - [ValidationErrorResponse](docs/ValidationErrorResponse.md)
247
+ - [WatchlistBatchCreateResponse](docs/WatchlistBatchCreateResponse.md)
248
+ - [WatchlistCreateBatchRequest](docs/WatchlistCreateBatchRequest.md)
249
+ - [WatchlistCreateRequest](docs/WatchlistCreateRequest.md)
250
+ - [WatchlistCreateResponse](docs/WatchlistCreateResponse.md)
251
+ - [WatchlistCreateSingleRequest](docs/WatchlistCreateSingleRequest.md)
252
+ - [WatchlistItem](docs/WatchlistItem.md)
253
+ - [WatchlistResponse](docs/WatchlistResponse.md)
254
+ - [WebhookCreateRequest](docs/WebhookCreateRequest.md)
255
+ - [WebhookDeliveriesResponse](docs/WebhookDeliveriesResponse.md)
256
+ - [WebhookDeliveryAttemptSummary](docs/WebhookDeliveryAttemptSummary.md)
257
+ - [WebhookDeliveryDetail](docs/WebhookDeliveryDetail.md)
258
+ - [WebhookDeliverySummary](docs/WebhookDeliverySummary.md)
259
+ - [WebhookEndpointSummary](docs/WebhookEndpointSummary.md)
260
+ - [WebhookEndpointsResponse](docs/WebhookEndpointsResponse.md)
261
+ - [WebhookSecretResponse](docs/WebhookSecretResponse.md)
262
+ - [WebhookUpdateRequest](docs/WebhookUpdateRequest.md)
263
+
264
+
265
+ <a id="documentation-for-authorization"></a>
266
+ ## Documentation For Authorization
267
+
268
+
269
+ Authentication schemes defined for the API:
270
+ <a id="BearerAuth"></a>
271
+ ### BearerAuth
272
+
273
+ - **Type**: Bearer authentication
274
+
275
+
276
+ ## Author
277
+
278
+
279
+
280
+