Skip to content

Instantly share code, notes, and snippets.

@zuzannamj
Last active October 7, 2019 06:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zuzannamj/154585c2fa76876439772d252a71990e to your computer and use it in GitHub Desktop.
Save zuzannamj/154585c2fa76876439772d252a71990e to your computer and use it in GitHub Desktop.
%%[
var @apikey, @url, @response
set @apikey = Lookup("NASAapi","apikey","id","apod") // keep your apikey in a Data Extension
set @apikey = "7Apb3QN7qVsXPuPDcSZBKAPf8twca03C5w4Oxuyc" // or hardcode it into your CloudPage
set @url = concat('https://api.nasa.gov/planetary/apod?api_key=',@apikey)
set @response = HTTPGET(@url,false,0,@CallStatus)
]%%
@response: %%=v(@response)=%%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment