<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xmlns:tt="http://teletype.in/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:media="http://search.yahoo.com/mrss/"><channel><title>@codechange</title><generator>teletype.in</generator><description><![CDATA[@codechange]]></description><link>https://teletype.in/@codechange?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=codechange</link><atom:link rel="self" type="application/rss+xml" href="https://teletype.in/rss/codechange?offset=0"></atom:link><atom:link rel="next" type="application/rss+xml" href="https://teletype.in/rss/codechange?offset=10"></atom:link><atom:link rel="search" type="application/opensearchdescription+xml" title="Teletype" href="https://teletype.in/opensearch.xml"></atom:link><pubDate>Thu, 25 Jun 2026 05:28:37 GMT</pubDate><lastBuildDate>Thu, 25 Jun 2026 05:28:37 GMT</lastBuildDate><item><guid isPermaLink="true">https://teletype.in/@codechange/ZgbQd3O1pTY</guid><link>https://teletype.in/@codechange/ZgbQd3O1pTY?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=codechange</link><comments>https://teletype.in/@codechange/ZgbQd3O1pTY?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=codechange#comments</comments><dc:creator>codechange</dc:creator><title>CodeChange API</title><pubDate>Mon, 21 Aug 2023 21:40:35 GMT</pubDate><description><![CDATA[Get the list of supported currencies, and their supported networks {GET}]]></description><content:encoded><![CDATA[
  <h1 id="b4wQ">Supported Currency List</h1>
  <p id="uA2v">Get the list of supported currencies, and their supported networks {GET}</p>
  <pre id="llRQ">https://api.codechange.cc/currencyList</pre>
  <h3 id="hN5G">Header</h3>
  <p id="NDzG">Field - API-KEY<br />Type - String <br />Description - Your API key</p>
  <h3 id="OWrD">Parameter</h3>
  <p id="Kqvy">Field - currency<br />Type - String<br />Description - If the currency is not set, details for all currencies will be returned</p>
  <h3 id="zsbA">Request Example</h3>
  <pre id="2ji8">curl -X GET &#x27;https://api.codechange.cc/currencyList&#x27; -H &#x27;API-KEY: your_api_key&#x27;</pre>
  <p id="IkNW"></p>
  <h3 id="Un0u">Successful Response</h3>
  <pre id="qu3c">HTTP/1.1 200 OK
{
    &quot;success&quot;: 1,
    &quot;data&quot;: [{
        &quot;currency&quot;: &quot;BTC&quot;,
        &quot;name&quot;: &quot;Bitcoin&quot;,
        &quot;sendStatusAll&quot;: true,
        &quot;receiveStatusAll&quot;: false,
        &quot;networkList&quot;: [{
            &quot;network&quot;: &quot;BNB&quot;,
            &quot;name&quot;: &quot;BEP2&quot;,
            &quot;isDefault&quot;: false,
            &quot;sendStatus&quot;: true,
            &quot;receiveStatus&quot;: false,
            &quot;receiveDecimals&quot;: 8,
            &quot;confirmationsMinimum&quot;: 1,
            &quot;confirmationsMaximum&quot;: 1,
            &quot;explorer&quot;: &quot;https://explorer.binance.org/&quot;,
            &quot;explorerHash&quot;: &quot;https://explorer.binance.org/tx/{{txid}}&quot;,
            &quot;explorerAddress&quot;: &quot;https://explorer.binance.org/address/{{addr}}&quot;,
            &quot;hasTag&quot;: true,
            &quot;tagName&quot;: &quot;MEMO&quot;,
            &quot;contractAddress&quot;: &quot;BTCB-1DE&quot;,
            &quot;contractAddressUrl&quot;: &quot;https://binance.mintscan.io/assets/&quot;
        },
        {
            &quot;network&quot;: &quot;BTC&quot;,
            &quot;name&quot;: &quot;BTC&quot;,
            &quot;isDefault&quot;: ture,
            &quot;sendStatus&quot;: true,
            &quot;receiveStatus&quot;: true,
            &quot;receiveDecimals&quot;: 8,
            &quot;confirmationsMinimum&quot;: 1,
            &quot;confirmationsMaximum&quot;: 2,
            &quot;explorer&quot;: &quot;https://www.blockchain.com/explorer/&quot;,
            &quot;explorerHash&quot;: &quot;https://www.blockchain.com/btc/tx/{{txid}}&quot;,
            &quot;explorerAddress&quot;: &quot;https://www.blockchain.com/btc/address/{{addr}}&quot;,
            &quot;hasTag&quot;: false
        },
        {
            . . .
        }]
    },
    {
        &quot;currency&quot;: &quot;ETH&quot;,
        &quot;name&quot;: &quot;Ethereum&quot;,
        &quot;sendStatusAll&quot;: true,
        &quot;receiveStatusAll&quot;: true,
        &quot;networkList&quot;: [{
            . . .
        }]
    },
    {
        . . .
    }]
}</pre>
  <h3 id="DMFB"></h3>
  <h1 id="BNTB">Pair Information</h1>
  <p id="zMeF">Get exchange information for a pair of currencies - networks {GET}</p>
  <pre id="NDw4">https://api.codechange.cc/pairInfo</pre>
  <h3 id="MqJ8">Header</h3>
  <p id="nA6b">Field - API-KEY<br />Type - String <br />Description - Your API key</p>
  <h3 id="mEpM">Parameter</h3>
  <p id="sMoM">Field                         Type              Description</p>
  <p id="0ZQt">send                         String            Ticker of currency to send</p>
  <p id="K2yo">receive                     String            Ticker of currency to receive</p>
  <p id="6cto">sendNetwork           String            Ticker of network to send. Default network will be selected if omitted</p>
  <p id="W3U6">receiveNetwork       String            Ticker of network to receive. Default network will be selected if omitted</p>
  <p id="hgzl"></p>
  <h3 id="GhMH">Request Example</h3>
  <pre id="miLY">curl -X GET &#x27;https://api.codechange.cc/pairInfo?send=ETH&amp;receive=BTC&amp;sendNetwork=BNB&amp;receiveNetwork=BSC&#x27; -H &#x27;API-KEY: your_api_key&#x27;</pre>
  <h3 id="VZrB">Successful Response<br /></h3>
  <pre id="TbIM">HTTP/1.1 200 OK
{
    &quot;success&quot;: 1,
    &quot;data&quot;: {
        &quot;minimumAmount&quot;: &quot;0.01075&quot;,
        &quot;maximumAmount&quot;: &quot;420&quot;,
        &quot;networkFee&quot;: &quot;0.000005&quot;,
        &quot;confirmations&quot;: 1,
        &quot;processingTime&quot;: &quot;3-5&quot;
    }
}</pre>
  <h1 id="uHMx"><br />Exchange Rate</h1>
  <p id="5VmN">The exchange rate for the requested pair is returned {GET}</p>
  <pre id="qqnV">https://api.codechange.cc/rate</pre>
  <h3 id="3CS0">Header</h3>
  <p id="0UOR">Field - API-KEY<br />Type - String <br />Description - Your API key</p>
  <h3 id="vqyc">Parameter</h3>
  <p id="iGTZ">Field                          Type                DescriptionsendString</p>
  <p id="Ahpy">send                          String              Ticker of currency to send</p>
  <p id="6jyw">receive                      String              Ticker of currency to receive</p>
  <p id="6qhE">amount                      Float                Amount to send</p>
  <p id="cN3A">sendNetwork            String               Ticker of network to send. Default network will be selected if omitted<br /><br />receiveNetwork       String                Ticker of network to receive. Default network will be selected if omitted</p>
  <p id="PGI0">amountType             String                Set this parameter as &quot;receive&quot; if you want to specify as &quot;amount&quot; the receive amount</p>
  <h3 id="Djtj">Request Example</h3>
  <pre id="UKh9">curl -X GET &#x27;https://api.codechange.cc/rate?send=ETH&amp;receive=BTC&amp;sendNetwork=BNB&amp;receiveNetwork=BSC&amp;amount=0.1&#x27; -H &#x27;API-KEY: your_api_key&#x27;</pre>
  <h3 id="T5zl">Successful Response<br /></h3>
  <pre id="tGf9">HTTP/1.1 200 OK
{
    &quot;success&quot;: 1,
    &quot;data&quot;: {
        &quot;rate&quot;: &quot;0.08195835&quot;,
        &quot;sendAmount&quot;: &quot;0.1&quot;,
        &quot;receiveAmount&quot;: &quot;0.00819083&quot;,
        &quot;networkFee&quot;: &quot;0.000005&quot;,
        &quot;confirmations&quot;: 1,
        &quot;processingTime&quot;: &quot;3-5&quot;
    }
}</pre>
  <h2 id="7PYN"><br />Validate Address</h2>
  <p id="oWu2">Validate wallet address and tag for specified coin - network {GET}</p>
  <pre id="jiOB">https://api.codechange.cc/validateAddress</pre>
  <h3 id="9n0s">Header</h3>
  <p id="8eNZ">Field - API-KEY<br />Type - String <br />Description - Your API key</p>
  <h3 id="qQB0">Parameter</h3>
  <p id="HfbJ">Field                            Type                   Description</p>
  <p id="Wxb1">currency                     String                  Ticker of currency to validate</p>
  <p id="WGH9">address                      String                  The wallet address you want to validate</p>
  <p id="6Ty2">network                      String                  Ticker of network to validate. Default network will be selected if omitted</p>
  <p id="JVa7">tag                              String                   The wallet tag you want to validate</p>
  <p id="kRa0"></p>
  <h3 id="53pC">Request Example<br /></h3>
  <pre id="2MgE">curl -X GET &#x27;https://api.codechange.cc/validateAddress?currency=BTC&amp;address=0xeB2629a2734e272Bcc07BDA959863f316F4bD4Cf&amp;network=BSC&#x27; -H &#x27;API-KEY: your_api_key&#x27;</pre>
  <h3 id="0FEs"><br />Successful Response<br /></h3>
  <pre id="gyKi">HTTP/1.1 200 OK
{
    &quot;success&quot;: 1,
    &quot;data&quot;: {
        &quot;address&quot;: &quot;0xeB2629a2734e272Bcc07BDA959863f316F4bD4Cf&quot;
    }
}</pre>
  <h2 id="1lJe"><br />Risk Evaluation</h2>
  <p id="itme">User Device Id</p>
  <p id="Ymnv">You should generate a unique user device identifier by following the best practices and standards for generating unique user identifiers. The identifier must be unique per user and device and must be consistent between orders placed by the same user device.</p>
  <p id="40go">When creating an order, you must record the client&#x27;s IP address and store this information for 5 years and provide it to us upon request. <br /><br /></p>
  <h1 id="xtM8">Place Order</h1>
  <p id="cLrz">POST</p>
  <pre id="ovAu">https://api.codechange.cc/order</pre>
  <h3 id="Ql0Q">Header</h3>
  <p id="4nJr">Field - API-KEY<br />Type - String <br />Description - Your API key</p>
  <h3 id="NP2R">Parameter</h3>
  <p id="85aJ">Field                        Type                      Description</p>
  <p id="A1ol">send                        String                    Ticker of currency to send</p>
  <p id="LqGJ">receive                    String                    Ticker of currency to receive</p>
  <p id="LyV0">amount                    Float                      The amount you have to send</p>
  <p id="QYvv">receiveAddress      String                     Receive wallet address</p>
  <p id="RVP8">userDeviceId          String                     A unique user device identifier generated on your end, represents a user device. Should be unique per user and device, orders placed from the same user device should contain the same userDeviceId. (Required when payload is not set, Optional when payload is set)<br /><br />sendNetwork        String                      Ticker of network to send. Default network will be selected if omitted</p>
  <p id="6n3Z">receiveNetwork      String                    Ticker of network to receive. Default network will be selected if omitted</p>
  <p id="1cXW">receiveTag             String                     Receive wallet address tag</p>
  <p id="sZQU">amountType          String                       Set this parameter as &quot;receive&quot; if you want to specify as &quot;amount&quot; the receive amount</p>
  <h3 id="OAeh">Request JSON Body Example</h3>
  <pre id="51Wg">{
    &quot;send&quot;: &quot;BTC&quot;,
    &quot;receive&quot;: &quot;ETH&quot;,
    &quot;amount&quot;: &quot;0.123&quot;,
    &quot;receiveAddress&quot;: &quot;0xeB2629a2734e272Bcc07BDA959863f316F4bD4Cf&quot;,
    &quot;userDeviceId&quot;: &quot;xxxxxxxx&quot;
}</pre>
  <h3 id="rnGG">Request Example</h3>
  <pre id="xARx">curl -X POST &#x27;https://api.codechange.cc/order&#x27; -H &#x27;API-KEY: your_api_key&#x27; -H &quot;Content-type: application/json&quot; -d &#x27;{&quot;send&quot;:&quot;BTC&quot;,&quot;receive&quot;:&quot;ETH&quot;,&quot;amount&quot;:&quot;0.123&quot;,&quot;receiveAddress&quot;:&quot;0xeB2629a2734e272Bcc07BDA959863f316F4bD4Cf&quot;,&quot;userDeviceId&quot;:&quot;xxxxxxxx&quot;}&#x27;</pre>
  <h3 id="utyv">Successful Response</h3>
  <pre id="qXUb">HTTP/1.1 200 OK
{
    &quot;success&quot;: 1,
    &quot;data&quot;: {
        &quot;id&quot;: &quot;I1Y0EFP31Rwu&quot;,
        &quot;send&quot;: &quot;BTC&quot;,
        &quot;receive&quot;: &quot;ETH&quot;,
        &quot;sendNetwork&quot;: &quot;BTC&quot;,
        &quot;receiveNetwork&quot;: &quot;ETH&quot;,
        &quot;sendAmount&quot;: &quot;0.123&quot;,
        &quot;receiveAmount&quot;: &quot;1.73703678&quot;,
        &quot;sendAddress&quot;: &quot;1NiwKhcuV4Xrep5gnki4enFBBRH6hHuKzf&quot;,
        &quot;sendTag&quot;: null,
        &quot;receiveAddress&quot;: &quot;0xeB2629a2734e272Bcc07BDA959863f316F4bD4Cf&quot;,
        &quot;receiveTag&quot;: null,
        &quot;refundAddress&quot;: null,
        &quot;refundTag&quot;: null,
        &quot;vpm&quot;: &quot;off&quot;,
        &quot;createdAt&quot;: 1643036313520
    }
}</pre>
  <h2 id="c48c"><br />Order Status</h2>
  <p id="nvAp">Get your order status {GET}</p>
  <pre id="k8HS">https://api.codechange.cc/orderStatus</pre>
  <h3 id="eG85">Header</h3>
  <p id="JOeY">Field - API-KEY<br />Type - String <br />Description - Your API key</p>
  <h3 id="zSkb">Parameter</h3>
  <p id="zKOF">Field                    Type                   Description</p>
  <p id="kOu2">id                         String                 Order id</p>
  <h3 id="IX3P">Request Example</h3>
  <pre id="AYDz">curl -X GET &#x27;https://api.codechange.cc/orderStatus?id=I1Y0EFP31Rwu&#x27; -H &#x27;API-KEY: your_api_key&#x27;</pre>
  <h3 id="m37g">Successful Response</h3>
  <p id="5OKS">status - &quot;Awaiting Deposit&quot; or &quot;Confirming Deposit&quot; or &quot;Exchanging&quot; or &quot;Sending&quot; or &quot;Complete&quot; or &quot;Refund&quot; or &quot;Failed&quot; or &quot;Action Request&quot; or &quot;Request Overdue&quot;</p>
  <p id="5U9e">validationLink - URL that should be displayed to the user on the order exchange page when the order status is &quot;Action Request&quot;</p>
  <h3 id="f7yb"><br />Successful Response</h3>
  <pre id="E1Po">HTTP/1.1 200 OK
{
    &quot;success&quot;: 1,
    &quot;data&quot;: {
        &quot;id&quot;: &quot;I1Y0EFP31Rwu&quot;,
        &quot;status&quot;: &quot;Awaiting Deposit&quot;,
        &quot;receiveAmount&quot;: &quot;1.73703678&quot;,
        &quot;hashIn&quot;: null,
        &quot;hashOut&quot;: null,
        &quot;validationLink&quot;: null,
        &quot;createdAt&quot;: 1643036313520,
        &quot;updatedAt&quot;: 1643036313520
    }
}</pre>
  <p id="635s"></p>
  <h1 id="lsv5">Orders</h1>
  <p id="fyAe">Get your orders {GET}</p>
  <pre id="K1o4">https://api.codechange.cc/orders</pre>
  <h3 id="oxuq">Header</h3>
  <p id="XdEk">Field - API-KEY<br />Type - String <br />Description - Your API key</p>
  <h3 id="oPu1">Parameter</h3>
  <p id="tzYV">Field                    Type                   Description</p>
  <p id="WX0F">id                         String                 Order id</p>
  <h3 id="39mL">Successful Response</h3>
  <pre id="JizZ">HTTP/1.1 200 OK
{
    &quot;success&quot;: 1,
    &quot;data&quot;: [{
        &quot;id&quot;: &quot;I1Y0EFP31Rwu&quot;,
        &quot;send&quot;: &quot;BTC&quot;,
        &quot;receive&quot;: &quot;ETH&quot;,
        &quot;sendNetwork&quot;: &quot;BTC&quot;,
        &quot;receiveNetwork&quot;: &quot;ETH&quot;,
        &quot;sendAmount&quot;: &quot;0.123&quot;,
        &quot;profit&quot;: &quot;11.22&quot;,
        &quot;estimatedReceiveAmount&quot;: &quot;1.73703678&quot;,
        &quot;receiveAmount&quot;: &quot;1.73703678&quot;,
        &quot;sendAddress&quot;: &quot;1NiwKhcuV4Xrep5gnki4enFBBRH6hHuKzf&quot;,
        &quot;sendTag&quot;: null,
        &quot;receiveAddress&quot;: &quot;0xeB2629a2734e272Bcc07BDA959863f316F4bD4Cf&quot;,
        &quot;receiveTag&quot;: null,
        &quot;refundAddress&quot;: null,
        &quot;refundTag&quot;: null,
        &quot;vpm&quot;: &quot;off&quot;,
        &quot;status&quot;: &quot;Awaiting Deposit&quot;,
        &quot;hashIn&quot;: null,
        &quot;hashOut&quot;: null,
        &quot;networkFee&quot;: &quot;0&quot;,
        &quot;earned&quot;: &quot;0&quot;,
        &quot;validationLink&quot;: null,
        &quot;createdAt&quot;: 1643036313520,
        &quot;updatedAt&quot;: 1643036313520
    },
    {
        ...
    }]
}</pre>
  <h2 id="Tdmy">  <br />Profit </h2>
  <p id="GcjN">According to the standard you will receive a profit of 60% for this you must provide all orders that were made using your service, in advance send orders only with the status of compliant, payment will be from 50$<br />To get the API key write <a href="https://t.me/codechangeoff" target="_blank">@codechangeoff</a></p>

]]></content:encoded></item></channel></rss>