Skip to content

Instantly share code, notes, and snippets.

@zuzannamj
Created September 27, 2019 20:24
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/48c8d397151becd9ffc16c2c8ad3c0e2 to your computer and use it in GitHub Desktop.
Save zuzannamj/48c8d397151becd9ffc16c2c8ad3c0e2 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)
]%%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment