{"info":{"_postman_id":"9a0bb02e-c8f7-4a56-8615-c0f93384eb0d","name":"Anny.trade REST API Hub","description":"Anny has a REST API collection to help you distribute your signals on our hub of crypto exchanges:\n- Manage trading channel  members\n- Distribute signals to your members so they can buy automatically \n- Use remote control to send calls to re-buy, take profit, trailing stop and target updates\n\n----\n\n## Authentication\nIn order to use Anny API's you will need the API keys for your trading channel. \n\nCreate your trading channel and generate it's API keys directly on Anny under the command /settings.\n\nYou'll need to pass 2 attributes in the HTTP header of all your API requests:`anny-api-key` and `anny-api-secret`.\n\n\n#### Header Example:\n\n>***anny-api-key***\n>\n>QB0avwproOw4HnfgVMCmlBojIvr0ycVsmIRvPndM8Uejuq6pDAyPrLrgEu14b\n>\n>***anny-api-secret***\n>\n>pogZgFveeZn8jxjMIjQykimhnIDyLVuaocOQBRHrWY4bDAg9YyUmB2z2gTNt2/bz1bE8ytoQvZ8rGfk6ZrCIXw==\n\n----\n\n## Standard response of Annys API calls:\nAll API calls will return a standard response called `result`:\n\n\t{\n\t    \"result\": {\n\t        \"type\": \"OPERATION_PERFORMED\",\n\t        \"ttl\": 500,\n\t        \"payload\": {\n\t            \"key\": \"value\"\n\t        }\n\t    }\n\t}\n\t\nAttributes of the object `result`\n\n* **type** - Identifies the final outcome of the request whetever it's success or failure. It's useful to handle specific business flows that require user input. This attribute may return one of the following values: `UNAUTHORIZED`, `CRITICAL`, `INVALID_INPUT_MISSING`, `INVALID_INPUT_CONTENT` ou `OPERATION_PERFORMED`. Find below some examples.\n\n* **ttl** - this attribute returns the processing time of a request. ttl = inbound request + internal processing + outbound response. The objective of this attribute is to measure the response time and performance o the API method. The time is in miliseconds presented in integer format.\n\n* **payload** - The payload contains the underlying object that relates to each API method, encapsulated and relating to its context.\n\n## Examples\n\n## UNAUTHORIZED \nThe response type `UNAUTHORIZED` means there was a problem with the data presented to identify the trading channel. The http header should correctly inform the `anny-api-key` and `anny-api-secret` attributes.\n\n\t{\n\t    \"result\": {\n\t        \"type\": \"UNAUTHORIZED\",\n\t        \"ttl\": 500\n\t    }\n\t}\n\t\n----\n\n## CRITICAL \nThe response type `CRITICAL` means that an internal problem has occured that client is not able to resolve.\n\n\t{\n\t    \"result\": {\n\t        \"type\": \"CRITICAL\",\n\t        \"ttl\": 500\n\t    }\n\t}\n\t\n----\n\t\n## INVALID_INPUT_MISSING \nThe response type `INVALID_INPUT_MISSING` means that mandatory inputs aresignifica que faltaram atributos obrigatórios necessários na requisição.\n\n\t{\n\t    \"result\": {\n\t        \"type\": \"INVALID_INPUT_MISSING\",\n\t        \"ttl\": 500\n\t    },\n\t    \"payload\": {\n\t        \"missingFields\": [\n\t            \"field1\",\n\t            \"field2\"\n\t        ]\n\t    }\n\t}\n\t\n----\n\n## INVALID_INPUT_CONTENT\nThe response type `INVALID_INPUT_CONTENT` means that there was a problem parsing one or more input fields. It may be a problem in formatting or invalid data that prevents the request from being processed.\n\n\t{\n\t    \"result\": {\n\t        \"type\": \"INVALID_INPUT_CONTENT\",\n\t        \"ttl\": 500\n\t    },\n\t    \"payload\": {\n\t        \"contentFields\": [\n\t            \"field1\",\n\t            \"field2\"\n\t        ]\n\t    }\n\t}\n\t\n## OPERATION_PERFORMED\nThe response type `OPERATION_PERFORMED` means that the request has been successfuly processed. Note that the response may still be success or failure at the business level therefore requires further inspection of the payload to parse the results. \n\n\t{\n\t    \"result\": {\n\t        \"type\": \"OPERATION_PERFORMED\",\n\t        \"ttl\": 500,\n\t        \"payload\": {\n\t            //specialized content\n\t        }\n\t    }\n\t}","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json"},"item":[{"name":"Signal","item":[{"name":"New Signal","id":"d3dfd2f6-7155-4cb7-92af-7304c7265933","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-type":true}},"request":{"method":"POST","header":[{"description":"The API key that of your channel within Anny.","key":"anny-api-key","type":"text","value":"{{anny-api-key}}"},{"description":"The API secret corresponding to your API key.","key":"anny-api-secret","type":"text","value":"{{anny-api-secret}}"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"type","value":"long","type":"text","description":"**(String|Optional)** The signal type can be 'long' or 'short'. When the signal type is short, the stop price should be higher than the entry prices and the exit prices should be lower then the entry prices.\nWhen ommited, defaults to 'long'."},{"key":"exchange","value":"BINANCE","type":"text","description":"**(String|Mandatory)** The recommended exchange where your signal should run."},{"key":"account","value":"FUTURES","type":"text","description":"**(String|Optional)** The recommended account where your signal should run (possible values are: SPOT, MARGIN or FUTURES). When ommited, defaults to SPOT."},{"key":"invest","value":"10","type":"text","description":"**(Integer|Mandatory)** Investment recommendation, correlating to the allocated maximum investment limit configured by the user."},{"key":"leverage","value":"1","type":"text","description":"**(Integer|Optional)** The leverage recommendation."},{"key":"margin_type","value":"ISOLATED","type":"text","description":"**(String|Optional)** The liquidation margin option. The possible values are: 'CROSS' or 'ISOLATED'"},{"key":"coin","value":"XRP","type":"text","description":"**(String|Mandatory)**Symbol of the coin of the signal (Ex: XRP)"},{"key":"trade_market","value":"BTC","type":"text","description":"**(String|Mandatory)** Symbol of the coin in trade or ticker (accepted values are BTC ou USDT)"},{"key":"entry_mode","value":"range","description":"**(String|Optional)** Entry mode. The possible values are: range or dcaLimit. When ommited, defaults to range.","type":"text"},{"key":"entry_price_min","value":"0.00002949","type":"text","description":"**(Float|Mandatory)** The minimum buy price (Satoshi's or Bitcoin formats are accepted)\nBitcoin example: 0.00001234 (always 8 digits)\nSatoshi example: 1234\nNote: on Binance, some coin pairs trade in less than 8 bitcoin digits."},{"key":"entry_price_mid","value":"0.00002949","description":"**(Float|Optional)** The middle buy price. Satoshi's or Bitcoin formats are accepted. Note: this field is only necessary for signal with entryMode = 'dcaLimit'\nBitcoin example: 0.00001234 (always 8 digits)\nSatoshi example: 1234\nNote: on Binance, some coin pairs trade in less than 8 bitcoin digits.","type":"text"},{"key":"entry_price_max","value":"0.00002951","type":"text","description":"**(Float|Mandatory)** The maximum buy price (Satoshi's or Bitcoin formats are accepted)"},{"key":"invest_entry_min","value":"20","description":"**(Integer|Optional)** Percentage of investment to be used in entry_price_min (Mandatory when entry_mode is dca)","type":"text"},{"key":"invest_entry_mid","value":"30","description":"**(Integer|Optional)** Percentage of investment to be used in entry_price_mid (Mandatory when entry_mode is dca)","type":"text"},{"key":"invest_entry_max","value":"50","description":"**(Integer|Optional)** Percentage of investment to be used in entry_price_max (Mandatory when entry_mode is dca)","type":"text"},{"key":"exit_price_1","value":"0.00002960","type":"text","description":"**(Float|Optional)** Sell target 1  (Satoshi's or Bitcoin formats are accepted)"},{"key":"exit_price_2","value":"0.00002964","type":"text","description":"**(Float|Optional)** Sell target 2 (Satoshi's or Bitcoin formats are accepted)"},{"key":"exit_price_3","value":"0.00002968","type":"text","description":"**(Float|Optional)** Sell target 3 (Satoshi's or Bitcoin formats are accepted)"},{"key":"exit_price_4","value":"0.00002970","type":"text","description":"**(Float|Optional)** Sell target 4 (Satoshi's or Bitcoin formats are accepted)"},{"key":"exit_price_5","value":"0.00002974","type":"text","description":"**(Float|Optional)** Sell target 5 (Satoshi's or Bitcoin formats are accepted)"},{"key":"stop_loss","value":"0.00002901","type":"text","description":"**(Float|Optional)** Stop-loss price (Satoshi's or Bitcoin formats are accepted)"},{"key":"attachment_image1_url","value":"https://specials-images.forbesimg.com/imageserve/5d8dcc4853e9710008d8f498/960x0.jpg","type":"text","description":"**(String(250)|Optional)** The technical analysis image that endorses the signal opportunity. (Image 1)"},{"key":"attachment_image2_url","value":"https://specials-images.forbesimg.com/imageserve/5d942ed84223bf0006b77fc6/960x0.jpg","type":"text","description":"**(String(250)|Optional)** The technical analysis image that endorses the signal opportunity. (Image 2)"},{"key":"attachment_description","value":"Lorem ipsum dolor sit amet, vim omittam inciderint te, referrentur signiferumque duo no. Ad duis splendide sententiae eum, cu qui dolore eligendi. Eum expetenda delicatissimi an, ex sea dissentiet theophrastus. Ei per impedit civibus complectitur, eu duo agam sensibus corrumpit, primis facilis insolens ea mea.","type":"text","description":"**(String(1000)|Optional)** The underlying text explaining the technical analysis."},{"key":"ttl_buy_order","value":"3600","type":"text","description":"**(Integer|Optional)** Maximum lifetime (in seconds) that limit buy orders may remain open at the exchange. When this time elapses, the order will be canceled and no position will be created from auto buy. The user will still have the option to enter the signal with a manual order thru Anny."}]},"url":"https://{{domain}}/v2/signal","description":"## Description\n\nThis method posts a new signal in your channel. A new signal consists of instructions to BUY, SELL and STOP.\n\nUpon submission, the signal will be registered to all members of your group, if the market price of the signal is within the buy range, auto buy will execute to all members, otherwise the signal will be in a price monitoring state.\n\n----\n\n## RESPONSE\n\t{\n    \t\"result\": {\n        \t\"type\": \"OPERATION_PERFORMED\",\n        \t\"ttl\": 500\n    \t},\n    \t\"payload\": {\n        \t\"parent_signal_id\": 12345,\n        \t\"result\": \"success\"\n    \t}\n\t}"},"response":[{"id":"bc426a64-2a4e-46ed-bc30-a4c2e53c33bb","name":"Entry mode range","originalRequest":{"method":"POST","header":[{"key":"anny-api-key","type":"text","value":"QB0avwproOw4HnfgVMCmlBojIvr0ycVsmIRvPndM8Uejuq6pDAyPrLrgEu14b"},{"key":"anny-api-secret","type":"text","value":"pogZgFveeZn8jxjMIjQykimhnIDyLVuaocOQBRHrWY4bDAg9YyUmB2z2gTNt2/bz1bE8ytoQvZ8rGfk6ZrCIXw=="},{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"coin","type":"text","value":"XRP"},{"key":"trade_market","type":"text","value":"BTC"},{"key":"exchange","type":"text","value":"BINANCE"},{"key":"entry_price_min","type":"text","value":"0.00002949"},{"key":"entry_price_max","type":"text","value":"0.00002951"},{"key":"exit_price_1","type":"text","value":"0.00002960"},{"key":"exit_price_2","type":"text","value":"0.00002964"},{"key":"exit_price_3","type":"text","value":"0.00002968"},{"key":"exit_price_4","type":"text","value":"0.00002970"},{"key":"exit_price_5","type":"text","value":"0.00002974"},{"key":"stop_loss","type":"text","value":"0.00002901"},{"key":"invest","type":"text","value":"10"},{"key":"attachment_image1_url","type":"text","value":"https://specials-images.forbesimg.com/imageserve/5d8dcc4853e9710008d8f498/960x0.jpg"},{"key":"attachment_image2_url","value":"https://specials-images.forbesimg.com/imageserve/5d942ed84223bf0006b77fc6/960x0.jpg","type":"text"},{"key":"attachment_description","type":"text","value":"Lorem ipsum dolor sit amet, vim omittam inciderint te, referrentur signiferumque duo no. Ad duis splendide sententiae eum, cu qui dolore eligendi. Eum expetenda delicatissimi an, ex sea dissentiet theophrastus. Ei per impedit civibus complectitur, eu duo agam sensibus corrumpit, primis facilis insolens ea mea."},{"key":"ttl_buy_order","value":"3600","type":"text"}]},"url":"https://api.anny.trade/v2/signal"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"65b7eaf1-8aa6-4295-b373-d8c723ab3cde","name":"Entry mode dcaLimit","originalRequest":{"method":"POST","header":[{"key":"anny-api-key","type":"text","value":"QB0avwproOw4HnfgVMCmlBojIvr0ycVsmIRvPndM8Uejuq6pDAyPrLrgEu14b"},{"key":"anny-api-secret","type":"text","value":"pogZgFveeZn8jxjMIjQykimhnIDyLVuaocOQBRHrWY4bDAg9YyUmB2z2gTNt2/bz1bE8ytoQvZ8rGfk6ZrCIXw=="},{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"coin","type":"text","value":"XRP"},{"key":"trade_market","type":"text","value":"BTC"},{"key":"exchange","type":"text","value":"BINANCE"},{"key":"entry_mode","value":"dcaLimit","type":"text"},{"key":"entry_price_min","type":"text","value":"0.00002949"},{"key":"entry_price_mid","value":"0.00002950","type":"text"},{"key":"entry_price_max","type":"text","value":"0.00002951"},{"key":"invest_entry_min","value":"20","type":"text"},{"key":"invest_entry_mid","value":"30","type":"text"},{"key":"invest_entry_max","value":"50","type":"text"},{"key":"exit_price_1","type":"text","value":"0.00002960"},{"key":"exit_price_2","type":"text","value":"0.00002964"},{"key":"exit_price_3","type":"text","value":"0.00002968"},{"key":"exit_price_4","type":"text","value":"0.00002970"},{"key":"exit_price_5","type":"text","value":"0.00002974"},{"key":"stop_loss","type":"text","value":"0.00002901"},{"key":"invest","type":"text","value":"10"},{"key":"attachment_image1_url","type":"text","value":"https://specials-images.forbesimg.com/imageserve/5d8dcc4853e9710008d8f498/960x0.jpg"},{"key":"attachment_image2_url","value":"https://specials-images.forbesimg.com/imageserve/5d942ed84223bf0006b77fc6/960x0.jpg","type":"text"},{"key":"attachment_description","type":"text","value":"Lorem ipsum dolor sit amet, vim omittam inciderint te, referrentur signiferumque duo no. Ad duis splendide sententiae eum, cu qui dolore eligendi. Eum expetenda delicatissimi an, ex sea dissentiet theophrastus. Ei per impedit civibus complectitur, eu duo agam sensibus corrumpit, primis facilis insolens ea mea."},{"key":"ttl_buy_order","value":"3600","type":"text"}]},"url":"https://api.anny.trade/v2/signal"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"d3dfd2f6-7155-4cb7-92af-7304c7265933"},{"name":"Update Price","id":"7f9047e9-94fb-4338-8c41-084215eadbc4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"anny-api-key","type":"text","value":"{{anny-api-key}}"},{"key":"anny-api-secret","type":"text","value":"{{anny-api-secret}}"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"entry_price_min","value":"0.00002976","type":"text"},{"key":"entry_price_max","value":"0.000030","type":"text"},{"key":"exit_price_1","value":"0.00003005","type":"text"},{"key":"exit_price_2","value":"0.00003036","type":"text"},{"key":"exit_price_3","value":"0.00003066","type":"text"},{"key":"exit_price_4","value":"0.00003096","type":"text"},{"key":"exit_price_5","value":"0.00003125","type":"text","disabled":true},{"key":"stop_loss","value":"0.00002922","type":"text"}]},"url":"https://{{domain}}/v1/signal/{{parent_signal_id}}/updateprice","description":"## Description\n\nThis method posts a signal price update request. \n\nThe price update will be accepted when the following conditions are met:\n- The signal is active or in price monitoring state\n- The price field to be updated has not been used yet\n\n----\n\n## Parameters (URL)\n\n>***parent_signal_id (String|Mandatory)***\n>\n>The signal identifier. Note: this identifier is returned when a new signal is published.\n\n\n## Parameters (Header)\n\n>***anny-api-key (String)***\n>\n>The API key that of your channel within Anny.\n>\n>***anny-api-secret (String)***\n>\n>The API secret corresponding to your API key.\n\n\n## Parameters (Body)\n\n>***entry_price_min (Float|Optional)***\n>\n>The minimum entry price (in Bitcoin or USDT formats)\n>\n>Bitcoin example: 0.00001234 (always 8 digits)\n>\n>***entry_price_max (Float|Optional)***\n>\n>The maximum entry price (in Bitcoin or USDT formats)\n>\n>***exit_price_1 (Float|Optional)***\n>\n>Exit target 1 (in Bitcoin or USDT formats)\n>\n>***exit_price_2 (Float|Optional)***\n>\n>Exit target 2 (in Bitcoin or USDT formats)\n>\n>***exit_price_3 (Float|Optional)*** \n>\n>Exit target 3 (in Bitcoin or USDT formats)\n>\n>***exit_price_4 (Float|Optional)***\n>\n>Exit target 4 (in Bitcoin or USDT formats)\n>\n>***exit_price_5 (Float|Optional)***\n>\n>Exit target 5 (in Bitcoin or USDT formats)\n>\n>***stop_loss (Float|Optional)***\n>\n>Stop-loss price (in Bitcoin or USDT formats)\n\n\n## RESPONSE\n\n\t{\n\t    \"result\": {\n\t        \"type\": \"OPERATION_PERFORMED\",\n\t        \"ttl\": 500\n\t    },\n\t    \"payload\": {\n\t        \"messageKey\": \"success\",\n\t        \"updateScope\": {\n\t            \"tradeEntryPriceMin\": {\n\t                \"old\": \"0.00002975\",\n\t                \"new\": \"0.00002977\"\n\t            },\n\t            \"stopLossPrice\": {\n\t                \"old\": \"0.00002932\",\n\t                \"new\": \"0.00002922\"\n\t            }\n\t        },\n\t        \"result\": \"success\"\n\t    }\n\t}"},"response":[{"id":"88971e19-4eb7-441d-9541-76aee2630d81","name":"Update Price","originalRequest":{"method":"PUT","header":[{"key":"anny-api-key","value":"QB0avwproOw4HnfgVMCmlBojIvr0ycVsmIRvPndM8Uejuq6pDAyPrLrgEu14b","type":"text"},{"key":"anny-api-secret","value":"pogZgFveeZn8jxjMIjQykimhnIDyLVuaocOQBRHrWY4bDAg9YyUmB2z2gTNt2/bz1bE8ytoQvZ8rGfk6ZrCIXw==","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"entry_price_min","value":"0.00002976","type":"text"},{"key":"entry_price_max","value":"0.000030","type":"text"},{"key":"exit_price_1","value":"0.00003006","type":"text"},{"key":"exit_price_2","value":"0.00003036","type":"text"},{"key":"exit_price_3","value":"0.00003066","type":"text"},{"key":"exit_price_4","value":"0.00003096","type":"text"},{"key":"exit_price_5","value":"0.00003125","type":"text"},{"key":"stop_loss","value":"0.00002922","type":"text"}]},"url":"https://api.anny.trade/v1/signal/12345/updateprice"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"7f9047e9-94fb-4338-8c41-084215eadbc4"},{"name":"Cancel signal","id":"cf7c958d-4497-473e-8c4e-8868bebfafed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"anny-api-key","value":"{{anny-api-key}}","type":"text"},{"key":"anny-api-secret","value":"{{anny-api-secret}}","type":"text"}],"url":"https://{{domain}}/v1/signal/{{parent_signal_id}}/cancel","description":"## Description\n\nThis method posts a signal cancel request. \n\nThe cancel request will be accepted when the signal state is on price monitoring and auto buy has not run for any trading channel members.\n\n----\n\n## Parameters (URL)\n\n>***parent_signal_id (String|Mandatory)***\n>\n>The signal identifier. Note: this identifier is returned when a new signal is published.\n\n\n## Parameters (Header)\n\n>***anny-api-key (String)***\n>\n>The API key that of your channel within Anny.\n>\n>***anny-api-secret (String)***\n>\n>The API secret corresponding to your API key.\n\n\n## Parameters (Body)\n\n>No parameters required.\n\n\n## RESPONSE\n\n\t{\n\t    \"result\": {\n\t        \"type\": \"OPERATION_PERFORMED\",\n\t        \"ttl\": 500\n\t    },\n\t    \"payload\": {\n\t        \"result\": \"success\"\n\t    }\n\t}"},"response":[{"id":"9e0c3e35-dcca-4b50-ab34-c1716cd9d2d1","name":"Cancel signal","originalRequest":{"method":"DELETE","header":[{"key":"anny-api-key","value":"QB0avwproOw4HnfgVMCmlBojIvr0ycVsmIRvPndM8Uejuq6pDAyPrLrgEu14b","type":"text"},{"key":"anny-api-secret","value":"pogZgFveeZn8jxjMIjQykimhnIDyLVuaocOQBRHrWY4bDAg9YyUmB2z2gTNt2/bz1bE8ytoQvZ8rGfk6ZrCIXw==","type":"text"}],"url":"https://api.anny.trade/v1/signal/12345/cancel"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"cf7c958d-4497-473e-8c4e-8868bebfafed"},{"name":"Signal Call: Trailing Stop-loss","id":"3f7e32c6-1046-406b-bb5a-fd86da00f3bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"anny-api-key","value":"{{anny-api-key}}","type":"text"},{"key":"anny-api-secret","value":"{{anny-api-secret}}","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"trailing_stop_price","value":"0.00002658","type":"text"},{"key":"trailing_stop_limit_price","value":"0.00002648","type":"text"}]},"url":"https://{{domain}}/v1/signal/{{parent_signal_id}}/call/trailingstop","description":"## Description\n\nThis method posts a follow-up trailing stop-loss call to a previously posted signal.\n\nUpon submission, the signal will be registered to all members of your group that have accepted to receive and execute trailing stop-loss calls automatically. The existing stop orders will be canceled and the corresponting trailing stop-loss orders will be created for the whole available balance of the signal.\n\n* * *\n\n## Parameters (URL)\n\n> ***parent_signal_id (String|Mandatory)***\n> \n> The signal identifier. Note: this identifier is returned when a new signal is published.\n\n## Parameters (Header)\n\n> ***anny-api-key (String)***\n> \n> The API key that of your channel within Anny.\n> \n> ***anny-api-secret (String)***\n> \n> The API secret corresponding to your API key.\n\n## Parameters (Body)\n\n> ***trailing_stop_price (Float|Mandatory)***\n> \n> The stop price (Satoshi's or Bitcoin formats are accepted)\n> \n> Bitcoin example: 0.00001234 (always 8 digits)  \n> Satoshi example: 1234\n> \n> Note: on Binance, some coin pairs trade in less than 8 bitcoin digits.\n> \n> ***trailing_stop_limit_price (Float|Mandatory)***\n> \n> The limit price (Satoshi's or Bitcoin formats are accepted).\n> \n> Note: for safety, Anny will automatically place a STOP MARKET order wherever this order type is available by the exchange. For example, on Binance/SPOT, STOP MARKET is not available but on Binance/FUTURES, it is.\n\n## RESPONSE\n\n```\n{\n    \"result\": {\n        \"type\": \"OPERATION_PERFORMED\",\n        \"ttl\": 500\n    },\n    \"payload\": {\n        \"result\": \"success\"\n    }\n}\n\n```"},"response":[{"id":"1b5bb0d4-e3ad-48b8-9d7e-d48e8260c84d","name":"Signal Call: Trailing Stop-loss","originalRequest":{"method":"POST","header":[{"key":"anny-api-key","value":"QB0avwproOw4HnfgVMCmlBojIvr0ycVsmIRvPndM8Uejuq6pDAyPrLrgEu14b","type":"text"},{"key":"anny-api-secret","value":"pogZgFveeZn8jxjMIjQykimhnIDyLVuaocOQBRHrWY4bDAg9YyUmB2z2gTNt2/bz1bE8ytoQvZ8rGfk6ZrCIXw==","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"trailing_stop_price","value":"0.00002658","type":"text"},{"key":"trailing_stop_limit_price","value":"0.00002648","type":"text"}]},"url":"https://api.anny.trade/v1/signal/12345/call/trailingstop"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"3f7e32c6-1046-406b-bb5a-fd86da00f3bd"},{"name":"Signal Call: Take Profit","id":"7728d02c-e136-4bc5-a99e-63552bcb83e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"anny-api-key","type":"text","value":"{{anny-api-key}}"},{"key":"anny-api-secret","type":"text","value":"{{anny-api-secret}}"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"order_type","value":"market","type":"text"},{"key":"sell_price","value":" 0.00002658","type":"text"},{"key":"sell_amount_relative","value":" 50","type":"text"},{"key":"trailing_stop_price","value":"0.00002658","type":"text"},{"key":"trailing_stop_limit_price","value":"0.00002648","type":"text"}]},"url":"https://{{domain}}/v1/signal/{{parent_signal_id}}/call/takeprofit","description":"## Description\n\nThis method posts a follow-up take profit call to a previously posted signal. When the take profit call is for less than 100% of the balance, a trailing stop-loss call should be appended in the signal.\n \nUpon submission, the signal call will be executed to all members of your group that have accepted to receive and execute take profit calls automatically. \n \nThe existing stop orders will be canceled and the corresponding take profit call will be place. For any remaining balance, the appended trailing stop-loss signals will be used to identify the placement of the stop order. \n\n----\n\n## Parameters (URL)\n\n>***parent_signal_id (String|Mandatory)***\n>\n>The signal identifier. Note: this identifier is returned when a new signal is published.\n\n\n## Parameters (Header)\n\n>***anny-api-key (String)***\n>\n>The API key that of your channel within Anny.\n>\n>***anny-api-secret (String)***\n>\n>The API secret corresponding to your API key.\n>\n    \n## Parameters (Body)\n\n>***order_type (String(20)|Mandatory)***\n>\n>The type of the sell order. Accepted values are:\n>'limit' or 'market'\n>\n>***sell_price (Float|Mandatory for limit orders)***\n>\n>The selling price in Bitcoin or Satoshis format. \n>Bitcoin example: 0.00001234 (always 8 digits)\n>Satoshi example: 1234\n>\n>Note: on Binance, some coin pairs trade in less than 8 bitcoin digits.\n>\n>***sell_amount_relative (Float)***\n>\n>The relative amount to be sold\n>\n>***trailing_stop_price (Float)***\n>\n>The trailing stop order instructions (for additional information refer to the signal call for trailing stop-loss)\n>\n>***trailing_stop_limit_price (Float)***\n>\n>The trailing stop order instructions (for additional information refer to the signal call for trailing stop-loss)\n>\n\n## RESPONSE\n\t{\n\t    \"result\": {\n\t        \"type\": \"OPERATION_PERFORMED\",\n\t        \"ttl\": 500\n\t    },\n\t    \"payload\": {\n\t        \"result\": \"success\"\n\t    }\n\t}"},"response":[{"id":"5e928169-1420-4497-ba7e-b6a52f309f5a","name":"Signal Call: Take Profit","originalRequest":{"method":"POST","header":[{"key":"anny-api-key","value":"QB0avwproOw4HnfgVMCmlBojIvr0ycVsmIRvPndM8Uejuq6pDAyPrLrgEu14b","type":"text"},{"key":"anny-api-secret","value":"pogZgFveeZn8jxjMIjQykimhnIDyLVuaocOQBRHrWY4bDAg9YyUmB2z2gTNt2/bz1bE8ytoQvZ8rGfk6ZrCIXw==","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"order_type","value":"market","type":"text"},{"key":"sell_price","value":" 0.00002658","type":"text"},{"key":"sell_amount_relative","value":" 50","type":"text"},{"key":"trailing_stop_price","value":"0.00002658","type":"text"},{"key":"trailing_stop_limit_price","value":"0.00002648","type":"text"}]},"url":"https://api.anny.trade/v1/signal/12345/call/takeprofit"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7728d02c-e136-4bc5-a99e-63552bcb83e4"},{"name":"Signal Call: Rebuy","id":"b4ee5614-034f-46bc-87b5-3eadeffddd86","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"anny-api-key","type":"text","value":"{{anny-api-key}}"},{"key":"anny-api-secret","type":"text","value":"{{anny-api-secret}}"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"buy_price_min","value":"0.00002670","type":"text"},{"key":"buy_price_max","value":"0.00002690","type":"text"},{"key":"invest","value":"10","type":"text"},{"key":"trailing_stop_price","value":"0.00002658","type":"text"},{"key":"trailing_stop_limit_price","value":"0.00002648","type":"text"}]},"url":"https://{{domain}}/v1/signal/{{parent_signal_id}}/call/rebuy","description":"## Description\n\nThis method posts a follow-up re-buy call to a previously posted signal. A trailing stop-loss call should be appended in the re-buy signal to provide instructions to where the newly acquired coin balance should be placed.\n \nUpon submission, the signal call will be executed to all members of your group that have accepted to receive and execute re-buy calls automatically. \n\n\n----\n\n## Parameters (URL)\n\n>***parent_signal_id (String|Mandatory)***\n>\n>The signal identifier. Note: this identifier is returned when a new signal is published.\n\n\n## Parameters (Header)\n\n>***anny-api-key (String)***\n>\n>The API key that of your channel within Anny.\n>\n>***anny-api-secret (String)***\n>\n>The API secret corresponding to your API key.\n\n\n## Parameters (Body)\n\n>***buy_price_min (Float|Mandatory)***\n>\n>The minimum buy price\n>\n>***buy_price_max (Float|Mandatory)***\n>\n>The maximum buy price\n>\n>***invest (Integer|Mandatory)*** \n>\n>Investment recommendation, correlating to the allocated maximum investment limit configured by the user.\n>\n>***trailing_stop_price (Float|Mandatory)***\n>\n>The trailing stop order instructions (for additional information refer to the signal call for trailing stop-loss)\n>\n>***trailing_stop_limit_price (Float|Mandatory)***\n>\n>The trailing stop order instructions (for additional information refer to the signal call for trailing stop-loss)\n>\n\n## RESPONSE\n\t{\n\t    \"result\": {\n\t        \"type\": \"OPERATION_PERFORMED\",\n\t        \"ttl\": 500\n\t    },\n\t    \"payload\": {\n\t        \"result\": \"success\"\n\t    }\n\t}"},"response":[{"id":"5ae28e33-b8c3-4463-ba7e-8d78acc1087a","name":"Signal Call: Rebuy","originalRequest":{"method":"POST","header":[{"key":"anny-api-key","value":"QB0avwproOw4HnfgVMCmlBojIvr0ycVsmIRvPndM8Uejuq6pDAyPrLrgEu14b","type":"text"},{"key":"anny-api-secret","value":"pogZgFveeZn8jxjMIjQykimhnIDyLVuaocOQBRHrWY4bDAg9YyUmB2z2gTNt2/bz1bE8ytoQvZ8rGfk6ZrCIXw==","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"buy_price_min","value":"0.00002670","type":"text"},{"key":"buy_price_max","value":"0.00002690","type":"text"},{"key":"invest","value":"10","type":"text"},{"key":"trailing_stop_price","value":"0.00002658","type":"text"},{"key":"trailing_stop_limit_price","value":"0.00002648","type":"text"}]},"url":"https://api.anny.trade/v1/signal/12345/call/rebuy"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b4ee5614-034f-46bc-87b5-3eadeffddd86"},{"name":"Signal Call: DCA","id":"11f32352-f097-44d3-9db8-e686eb32d7d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"anny-api-key","type":"text","value":"{{anny-api-key}}"},{"key":"anny-api-secret","type":"text","value":"{{anny-api-secret}}"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"buy_price","type":"text","value":"0.00002670"},{"key":"multiplier","type":"text","value":"2"}]},"url":"https://{{domain}}/v1/signal/{{parent_signal_id}}/call/dca","description":"## Description\n\nThis method posts a follow-up DCA call to a previously posted signal.\n \nUpon submission, the signal call will be executed to all members of your group that have accepted to receive and execute DCA calls automatically. \n\n\n----\n\n## Parameters (URL)\n\n>***parent_signal_id (String|Mandatory)***\n>\n>The signal identifier. Note: this identifier is returned when a new signal is published.\n\n\n## Parameters (Header)\n\n>***anny-api-key (String)***\n>\n>The API key that of your channel within Anny.\n>\n>***anny-api-secret (String)***\n>\n>The API secret corresponding to your API key.\n\n\n## Parameters (Body)\n\n>***buy_price (Float|Mandatory)***\n>\n>The buy price\n>\n>***multiplier (Float|Mandatory)*** \n>\n>Balance multiplier\n>\n>The multiplier is the quantity by which your current position will be multiplied in order to calculate the size of the new buy order. For example: \n>- 1.5 will make a buy order 50% larger than the user current balance.\n>- 2 will make a buy order twice as big as the current balance\n>- 1 will not be effective.\n>\n\n## RESPONSE\n\t{\n\t    \"result\": {\n\t        \"type\": \"OPERATION_PERFORMED\",\n\t        \"ttl\": 500\n\t    },\n\t    \"payload\": {\n\t        \"result\": \"success\"\n\t    }\n\t}"},"response":[{"id":"371a9b46-1988-4481-885c-564e4643239b","name":"Signal Call: Rebuy","originalRequest":{"method":"POST","header":[{"key":"anny-api-key","value":"QB0avwproOw4HnfgVMCmlBojIvr0ycVsmIRvPndM8Uejuq6pDAyPrLrgEu14b","type":"text"},{"key":"anny-api-secret","value":"pogZgFveeZn8jxjMIjQykimhnIDyLVuaocOQBRHrWY4bDAg9YyUmB2z2gTNt2/bz1bE8ytoQvZ8rGfk6ZrCIXw==","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"buy_price","value":"0.00002670","type":"text"},{"key":"multiplier","value":"2","type":"text"}]},"url":"https://api.anny.trade/v1/signal/12345/call/dca"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"11f32352-f097-44d3-9db8-e686eb32d7d1"}],"id":"908f396c-8717-4496-a8ff-0d8a8ead01cf","description":"Distribute your crypto signals to your signal group members. Anny will notify users about your incoming signal and run auto buy and auto stop for users that have opted-in for the service.","event":[{"listen":"prerequest","script":{"id":"8996c365-6e9c-4a05-8b3a-9cdad9794d36","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"bb7d8ded-7b2f-45cd-ba77-9569d381752c","type":"text/javascript","exec":[""]}}],"_postman_id":"908f396c-8717-4496-a8ff-0d8a8ead01cf"},{"name":"Subscription","item":[{"name":"New Subscription","id":"44fd1ed2-29e9-4f34-82bd-f49e536153c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"anny-api-key","type":"text","value":"{{anny-api-key}}"},{"key":"anny-api-secret","type":"text","value":"{{anny-api-secret}}"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"firstname","type":"text","value":"Bernard"},{"key":"lastname","type":"text","value":"Scott"},{"key":"messenger_type","type":"text","value":"telegram"},{"key":"messenger_id","type":"text","value":"123456789"},{"key":"messenger_username","type":"text","value":"bernardscott"}]},"url":"https://{{domain}}/v1/subscription","description":"## Description\n\nPre-provision the subscribers to your Trading Channel on Anny. \n\nOnce pre-provisioned, your Trading Channel will be visibile in the \"Already a member\" section of the Pro Traders directory.\n\nYour subscriber will become an active member of the Trading Channel once he agrees to connect.\n\n\n----\n\n## Parameters (Header)\n\n>***anny-api-key (String)***\n>\n>The API key that of your channel within Anny.\n>\n>***anny-api-secret (String)***\n>\n>The API secret corresponding to your API key.\n\n\n## Parameters (Body)\n\n>***firstname (String)***\n>\n>User first name.\n>\n>***lastname (String)***\n>\n>User last name.\n>\n>***messenger_type (String)***\n>\n>Messenger identifier. Default: telegram\n>\n>***messenger_id (String)***\n>\n>User id on messenger.\n>Note: on Telegram the identifier is an integer.\n>\n>***messenger_username (String)***\n>\n>Messenger username.\n>Note; on Telegram the username is a string. Example: @bernardscott\n\n\n## RESPONSE\n\t{\n\t    \"result\": {\n\t        \"type\": \"OPERATION_PERFORMED\",\n\t        \"ttl\": 500\n\t    },\n\t    \"payload\": {\n\t        \"result\": \"success\",\n\t        \"subscription\": {\n\t            \"subscription_id\": 9999,\n\t            \"firstname\": \"Bernard\",\n\t            \"lastname\": \"Scott\",\n\t            \"messenger_type\": \"telegram\",\n\t            \"messenger_id\": 123456789,\n\t            \"messenger_username\": \"bernardscott\",\n\t            \"is_anny_active\": false\n\t        }\n\t    }\n\t}"},"response":[{"id":"3b59c1f8-5d8d-446f-a985-d3323782cff5","name":"New Subscription","originalRequest":{"method":"POST","header":[{"key":"anny-api-key","type":"text","value":"QB0avwproOw4HnfgVMCmlBojIvr0ycVsmIRvPndM8Uejuq6pDAyPrLrgEu14b"},{"key":"anny-api-secret","type":"text","value":"pogZgFveeZn8jxjMIjQykimhnIDyLVuaocOQBRHrWY4bDAg9YyUmB2z2gTNt2/bz1bE8ytoQvZ8rGfk6ZrCIXw=="},{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"firstname","type":"text","value":"Bernard"},{"key":"lastname","type":"text","value":"Scott"},{"key":"messenger_type","type":"text","value":"telegram"},{"key":"messenger_id","type":"text","value":"123456789"},{"key":"messenger_username","type":"text","value":"bernardscott"}]},"url":"https://api.anny.trade/v1/subscription"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"44fd1ed2-29e9-4f34-82bd-f49e536153c1"},{"name":"Get Subscription","id":"321581db-4c4c-4130-b391-53f2e25b6631","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"anny-api-key","type":"text","value":"{{anny-api-key}}"},{"key":"anny-api-secret","value":"{{anny-api-secret}}","type":"text"}],"url":"https://{{domain}}/v1/subscription/{{subscription_id}}","description":"## Description\n\nReturns the data of an individual member subscribed in your trading channel using the subscription id as input.\n\nExample:\n> GET /api/v1/subscription/9999\n\n----\n\n## Parâmetros (Header)\n\n>***anny-api-key (String)***\n>\n>The API key that of your channel within Anny.\n>\n>***anny-api-secret (String)***\n>\n>The API secret corresponding to your API key.\n\n\n## Parameters (Body)\n\n>No parameters required.\n\n\n## Parameters (URL)\n\n>***subscription_id (String)***\n>\n>Subscription identifier.\n\n\n## RESPONSE\n\t{\n\t    \"result\": {\n\t        \"type\": \"OPERATION_PERFORMED\",\n\t        \"ttl\": 500\n\t    },\n\t    \"payload\": {\n\t        \"subscription\": {\n\t            \"subscription_id\": 9999,\n\t            \"firstname\": \"Bernard\",\n\t            \"lastname\": \"Scott\",\n\t            \"messenger_type\": \"telegram\",\n\t            \"messenger_id\": 123456789,\n\t            \"messenger_username\": \"bernardscott\",\n\t            \"is_anny_active\": false\n\t        }\n\t    }\n\t}"},"response":[{"id":"5d5a5c0b-76ae-4abb-92f8-86ea29b6260d","name":"Get Subscription","originalRequest":{"method":"GET","header":[{"key":"anny-api-key","type":"text","value":"QB0avwproOw4HnfgVMCmlBojIvr0ycVsmIRvPndM8Uejuq6pDAyPrLrgEu14b"},{"key":"anny-api-secret","value":"pogZgFveeZn8jxjMIjQykimhnIDyLVuaocOQBRHrWY4bDAg9YyUmB2z2gTNt2/bz1bE8ytoQvZ8rGfk6ZrCIXw==","type":"text"}],"url":"https://api.anny.trade/v1/subscription/9999"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"321581db-4c4c-4130-b391-53f2e25b6631"},{"name":"Get Subscription by Messenger","id":"b36cd2d5-7509-4481-8a1b-27a8858d1379","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"anny-api-key","type":"text","value":"{{anny-api-key}}"},{"key":"anny-api-secret","type":"text","value":"{{anny-api-secret}}"}],"url":"https://{{domain}}/v1/subscription/{{telegram_type}}/{{telegram_id}}","description":"## Description\n\nReturns the data of an individual member subscribed in your trading channel using the Telegram id as identifier.\n\nExample:\n> GET /api/v1/subscription/telegram/123456789\n\n----\n\n## Parâmetros (Header)\n\n>***anny-api-key (String)***\n>\n>The API key that of your channel within Anny.\n>\n>***anny-api-secret (String)***\n>\n>The API secret corresponding to your API key.\n\n\n## Parameters (Body)\n\n>No parameters are required in the body.\n\n## Parameters (URL)\n\n>***messenger_type (String)***\n>\n>The messenger type. Default: telegram\n>\n>***messenger_id (String)***\n>\n>The messenger identifier.\n\n\n## RESPONSE\n\t{\n\t    \"result\": {\n\t        \"type\": \"OPERATION_PERFORMED\",\n\t        \"ttl\": 500\n\t    },\n\t    \"payload\": {\n\t        \"subscription\": {\n\t            \"subscription_id\": 9999,\n\t            \"firstname\": \"Bernard\",\n\t            \"lastname\": \"Scott\",\n\t            \"messenger_type\": \"telegram\",\n\t            \"messenger_id\": 123456789,\n\t            \"messenger_username\": \"bernardscott\",\n\t            \"is_anny_active\": false\n\t        }\n\t    }\n\t}"},"response":[{"id":"6a234f26-a72f-4e11-92f4-548f567449e3","name":"Get Subscription by Messenger","originalRequest":{"method":"GET","header":[{"key":"anny-api-key","type":"text","value":"QB0avwproOw4HnfgVMCmlBojIvr0ycVsmIRvPndM8Uejuq6pDAyPrLrgEu14b"},{"key":"anny-api-secret","type":"text","value":"pogZgFveeZn8jxjMIjQykimhnIDyLVuaocOQBRHrWY4bDAg9YyUmB2z2gTNt2/bz1bE8ytoQvZ8rGfk6ZrCIXw=="}],"url":"https://api.anny.trade/v1/subscription/telegram/123456789"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b36cd2d5-7509-4481-8a1b-27a8858d1379"},{"name":"Get All Subscriptions","id":"e4a6c8e2-01c4-4ef3-a12c-e3a3e5b4fd78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"anny-api-key","type":"text","value":"{{anny-api-key}}"},{"key":"anny-api-secret","type":"text","value":"{{anny-api-secret}}"}],"url":"https://{{domain}}/v1/subscription/all","description":"## Description\n\nReturns a list of all active subscribers on your Trading Channel.\n\n----\n\n## Parameter (Header)\n\n>***anny-api-key (String)***\n>\n>The API key that of your channel within Anny.\n>\n>***anny-api-secret (String)***\n>\n>The API secret corresponding to your API key.\n\n\n## Parameter (Body)\n\n>No parameter is required in the body.\n\n\n## RESPONSE\n\t{\n\t    \"result\": {\n\t        \"type\": \"OPERATION_PERFORMED\",\n\t        \"ttl\": 500\n\t    },\n\t    \"payload\": {\n\t        \"subscription\": [\n\t            {\n\t\t            \"subscription_id\": 9999,\n\t\t            \"firstname\": \"Bernard\",\n\t\t            \"lastname\": \"Scott\",\n\t\t            \"messenger_type\": \"telegram\",\n\t\t            \"messenger_id\": 123456789,\n\t\t            \"messenger_username\": \"bernardscott\",\n\t\t            \"is_anny_active\": false\n\t            },\n\t            {\n\t\t            \"subscription_id\": 8888,\n\t                \"firstname\": \"Lisa\",\n\t                \"lastname\": \"Johnson\",\n\t\t            \"messenger_type\": \"telegram\",\n\t                \"messenger_id\": 111111111,\n\t                \"messenger_username\": \"lisajohnson\",\n\t                \"is_anny_active\": true\n\t            },\n\t            {\n\t\t            \"subscription_id\": 7777,\n\t                \"firstname\": \"Adam\",\n\t                \"lastname\": \"Parker\",\n\t\t            \"messenger_type\": \"telegram\",\n\t                \"messenger_id\": 222222222,\n\t                \"messenger_username\": \"adamparker\",\n\t                \"is_anny_active\": true\n\t            }\n\t        ]\n\t    }\n\t}"},"response":[{"id":"8f1a3fd2-c134-46b1-9644-77e0b77ed03f","name":"Get All Subscriptions","originalRequest":{"method":"GET","header":[{"key":"anny-api-key","type":"text","value":"QB0avwproOw4HnfgVMCmlBojIvr0ycVsmIRvPndM8Uejuq6pDAyPrLrgEu14b"},{"key":"anny-api-secret","type":"text","value":"pogZgFveeZn8jxjMIjQykimhnIDyLVuaocOQBRHrWY4bDAg9YyUmB2z2gTNt2/bz1bE8ytoQvZ8rGfk6ZrCIXw=="}],"url":"https://api.anny.trade/v1/subscription/all"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"e4a6c8e2-01c4-4ef3-a12c-e3a3e5b4fd78"},{"name":"Delete Subscription","id":"495a53dc-e698-4699-b84a-38cc1c7e9b55","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"anny-api-key","type":"text","value":"{{anny-api-key}}"},{"key":"anny-api-secret","type":"text","value":"{{anny-api-secret}}"}],"url":"https://{{domain}}/v1/subscription/{{subscription_id}}","description":"## Description\n\nRemoves a user from your trading channel.\n\nExample:\n> DELETE /api/v1/subscription/9999\n\n----\n\n## Parameters (Header)\n\n>***anny-api-key (String)***\n>\n>The API key that of your channel within Anny.\n>\n>***anny-api-secret (String)***\n>\n>The API secret corresponding to your API key.\n\n\n## Parameters (Body)\n\n>No parameter is required in the body.\n\n\n## Parameters (URL)\n\n>***subscription_id (String)***\n>\n>Subscription identifier.\n\n\n## RESPONSE\n\t{\n\t    \"result\": {\n\t        \"type\": \"OPERATION_PERFORMED\",\n\t        \"ttl\": 500\n\t    },\n\t    \"payload\": {\n\t        \"result\": \"success\"\n\t    }\n\t}"},"response":[{"id":"c85a629b-94cf-4036-8bad-c0a744c6aefe","name":"Delete Subscription","originalRequest":{"method":"DELETE","header":[{"key":"anny-api-key","type":"text","value":"QB0avwproOw4HnfgVMCmlBojIvr0ycVsmIRvPndM8Uejuq6pDAyPrLrgEu14b"},{"key":"anny-api-secret","type":"text","value":"pogZgFveeZn8jxjMIjQykimhnIDyLVuaocOQBRHrWY4bDAg9YyUmB2z2gTNt2/bz1bE8ytoQvZ8rGfk6ZrCIXw=="}],"url":"https://api.anny.trade/v1/subscription/9999"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"495a53dc-e698-4699-b84a-38cc1c7e9b55"},{"name":"Delete Subscription by Messenger","id":"f03399ca-6a31-4256-9cf9-e1c480b6940e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"anny-api-key","type":"text","value":"{{anny-api-key}}"},{"key":"anny-api-secret","type":"text","value":"{{anny-api-secret}}"}],"url":"https://{{domain}}/v1/subscription/{{telegram_type}}/{{telegram_id}}","description":"## Description\n\nRemoves a member from your trading channel by using the messenger data to identify the user.\n\nExample:\n> DELETE /api/v1/subscription/telegram/123456789\n\n----\n\n## Parameters (Header)\n\n>***anny-api-key (String)***\n>\n>The API key that of your channel within Anny.\n>\n>***anny-api-secret (String)***\n>\n>The API secret corresponding to your API key.\n\n\n## Parameters (Body)\n\n>No parameters are required in the body.\n\n\n## Parameters (URL)\n\n>***messenger_type (String)***\n>\n>The messenger type. Default: telegram\n>\n>***messenger_id (String)***\n>\n>The messenger identifier.\n\n\n## RESPONSE\n\t{\n\t    \"result\": {\n\t        \"type\": \"OPERATION_PERFORMED\",\n\t        \"ttl\": 500\n\t    },\n\t    \"payload\": {\n\t        \"result\": \"success\"\n\t    }\n\t}"},"response":[{"id":"3996e738-831c-4d44-8613-7f5bd1c15f2d","name":"Delete Subscription by Messenger","originalRequest":{"method":"DELETE","header":[{"key":"anny-api-key","type":"text","value":"QB0avwproOw4HnfgVMCmlBojIvr0ycVsmIRvPndM8Uejuq6pDAyPrLrgEu14b"},{"key":"anny-api-secret","type":"text","value":"pogZgFveeZn8jxjMIjQykimhnIDyLVuaocOQBRHrWY4bDAg9YyUmB2z2gTNt2/bz1bE8ytoQvZ8rGfk6ZrCIXw=="}],"url":"https://api.anny.trade/v1/subscription/telegram/123456789"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f03399ca-6a31-4256-9cf9-e1c480b6940e"}],"id":"f25867a0-386f-4a33-b971-0547391c7daf","description":"This API set manages the membership of your signal group on Anny.","event":[{"listen":"prerequest","script":{"id":"144b291c-8e0d-438e-bcb1-99c769d9fbf5","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9194c39b-8a25-44ce-9f52-0f5b25afcb81","type":"text/javascript","exec":[""]}}],"_postman_id":"f25867a0-386f-4a33-b971-0547391c7daf"}],"auth":{"type":"apikey","apikey":{"value":"","key":""}},"event":[{"listen":"prerequest","script":{"id":"f89f6e3c-d24f-4c05-8363-932b7fc8d241","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"2d6009fb-ba3c-47ce-b817-b9fc44c57e7e","type":"text/javascript","exec":[""]}}]}