<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Extracting Cryptoquant data via JSON API in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Extracting-Cryptoquant-data-via-JSON-API/m-p/821044#M324131</link>
    <description>&lt;P&gt;&lt;STRONG&gt;I was able to form the correct code to access the cryptoquant data. Here is a sample of the code to get a list of all their API Endpoints. A token ID is required to access the data.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;filename out temp ;&lt;BR /&gt;%let access_token = &amp;lt;Enter token id here&amp;gt; ;&lt;/P&gt;&lt;P&gt;************* DISCOVERY: Endpoints ****************************;&lt;/P&gt;&lt;P&gt;proc http OAUTH_BEARER="&amp;amp;access_token"&lt;BR /&gt;url="&lt;A href="https://api.cryptoquant.com/v1/discovery/endpoints" target="_blank"&gt;https://api.cryptoquant.com/v1/discovery/endpoints&lt;/A&gt;"&lt;BR /&gt;method="get"&lt;BR /&gt;out=out;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;libname crypto json fileref=out;&lt;/P&gt;&lt;P&gt;proc datasets lib=crypto; quit;&lt;BR /&gt;proc contents data=crypto.alldata; run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;**********************************************************;&lt;/P&gt;</description>
    <pubDate>Wed, 29 Jun 2022 23:24:28 GMT</pubDate>
    <dc:creator>jitb</dc:creator>
    <dc:date>2022-06-29T23:24:28Z</dc:date>
    <item>
      <title>Extracting Cryptoquant data via JSON API</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Extracting-Cryptoquant-data-via-JSON-API/m-p/820335#M323784</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Has anyone used proc http to extract data from the Cryptoquant site using their JSON API? I am completely new to this procedure and would like to know of some use cases, if possible. Thank you!&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jun 2022 22:44:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Extracting-Cryptoquant-data-via-JSON-API/m-p/820335#M323784</guid>
      <dc:creator>jitb</dc:creator>
      <dc:date>2022-06-24T22:44:56Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting Cryptoquant data via JSON API</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Extracting-Cryptoquant-data-via-JSON-API/m-p/820356#M323793</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I haven't done that, but it should be easy.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Start from here :&lt;/P&gt;
&lt;P&gt;Reading data with the SAS JSON libname engine&lt;BR /&gt;By Chris Hemedinger on The SAS Dummy December 2, 2016&lt;BR /&gt;&lt;A href="https://blogs.sas.com/content/sasdummy/2016/12/02/json-libname-engine-sas" target="_blank"&gt;https://blogs.sas.com/content/sasdummy/2016/12/02/json-libname-engine-sas&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;with Simple JSON example: &lt;STRONG&gt;Who is in space right now?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Sat, 25 Jun 2022 09:32:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Extracting-Cryptoquant-data-via-JSON-API/m-p/820356#M323793</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2022-06-25T09:32:47Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting Cryptoquant data via JSON API</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Extracting-Cryptoquant-data-via-JSON-API/m-p/820379#M323801</link>
      <description>Thank you, Koen. I will review this article.&lt;BR /&gt;Thanks again for giving me a start. I will post once I make some headway.&lt;BR /&gt;&lt;BR /&gt;Jit&lt;BR /&gt;</description>
      <pubDate>Sat, 25 Jun 2022 13:17:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Extracting-Cryptoquant-data-via-JSON-API/m-p/820379#M323801</guid>
      <dc:creator>jitb</dc:creator>
      <dc:date>2022-06-25T13:17:39Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting Cryptoquant data via JSON API</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Extracting-Cryptoquant-data-via-JSON-API/m-p/821044#M324131</link>
      <description>&lt;P&gt;&lt;STRONG&gt;I was able to form the correct code to access the cryptoquant data. Here is a sample of the code to get a list of all their API Endpoints. A token ID is required to access the data.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;filename out temp ;&lt;BR /&gt;%let access_token = &amp;lt;Enter token id here&amp;gt; ;&lt;/P&gt;&lt;P&gt;************* DISCOVERY: Endpoints ****************************;&lt;/P&gt;&lt;P&gt;proc http OAUTH_BEARER="&amp;amp;access_token"&lt;BR /&gt;url="&lt;A href="https://api.cryptoquant.com/v1/discovery/endpoints" target="_blank"&gt;https://api.cryptoquant.com/v1/discovery/endpoints&lt;/A&gt;"&lt;BR /&gt;method="get"&lt;BR /&gt;out=out;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;libname crypto json fileref=out;&lt;/P&gt;&lt;P&gt;proc datasets lib=crypto; quit;&lt;BR /&gt;proc contents data=crypto.alldata; run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;**********************************************************;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jun 2022 23:24:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Extracting-Cryptoquant-data-via-JSON-API/m-p/821044#M324131</guid>
      <dc:creator>jitb</dc:creator>
      <dc:date>2022-06-29T23:24:28Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting Cryptoquant data via JSON API</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Extracting-Cryptoquant-data-via-JSON-API/m-p/917331#M361355</link>
      <description>Many thanks!</description>
      <pubDate>Thu, 22 Feb 2024 10:54:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Extracting-Cryptoquant-data-via-JSON-API/m-p/917331#M361355</guid>
      <dc:creator>ademkalyir</dc:creator>
      <dc:date>2024-02-22T10:54:17Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting Cryptoquant data via JSON API</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Extracting-Cryptoquant-data-via-JSON-API/m-p/917877#M361566</link>
      <description>&lt;P&gt;If you're looking into extracting Cryptoquant data via JSON API, I highly recommend checking out stakingy platform. It's a fantastic resource for tracking the &lt;FONT color="#000000"&gt;&lt;A href="https://stakingy.com/stablecoins" target="_self"&gt;best apy stablecoins&lt;/A&gt;&lt;/FONT&gt; and optimizing your crypto investments. With the volatile nature of the market, finding stable assets with high yields is crucial for maximizing returns. Stakingy provides comprehensive data on various stablecoins, allowing you to make informed decisions and leverage opportunities for passive income. Don't miss out on exploring this valuable tool to enhance your crypto portfolio.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Feb 2024 08:13:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Extracting-Cryptoquant-data-via-JSON-API/m-p/917877#M361566</guid>
      <dc:creator>ademkalyir</dc:creator>
      <dc:date>2024-02-26T08:13:25Z</dc:date>
    </item>
  </channel>
</rss>

