I'm trying to import data from this site
https://polygon.io/docs/stocks/getting-started
by SAS viya or SAS Window.
I have tried few codes and was not successful.
I signed up for an API key (free) so I could try this. In SAS it's straightforward. Here's my code using their sample call:
filename resp temp;
proc http
url="https://api.polygon.io/v2/aggs/ticker/AAPL/range/1/day/2021-07-22/2021-07-22?adjusted=true&sort=asc&limit=120"
out=resp
oauth_bearer="your-api-key";
run;
libname data json fileref=resp;
proc print data=data.results;
run;
Output:
Instead of the OAUTH_BEARER option (shorthand for the OAuth pattern), you can also use the HEADERS statement:
proc http
url="api-call"
out=resp;
headers
"Authorization" = "Bearer your-auth-key";
run;
I tried this code and still not working
proc http
url="https://api.polygon.io/v2/aggs/ticker/AAPL/range/1/day/2021-07-22/2021-07-22?adjusted=true&sort=asc&..."
out=resp;
headers
"Authorization" = "Bearer <token>";
run;
Delete your token from the message.
Can you make any PROC HTTP calls to the internet in SAS? Try the steps in this blog post. You might need to specify a proxy host.
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.