Skip to content

Instantly share code, notes, and snippets.

@wongni
Created January 12, 2018 15:32
Show Gist options
  • Save wongni/e8f1937e02bfc51c79ccf2fbfdcbff6c to your computer and use it in GitHub Desktop.
Save wongni/e8f1937e02bfc51c79ccf2fbfdcbff6c to your computer and use it in GitHub Desktop.
import axios from 'axios'
const ROOT_URL = 'https://api.nasa.gov/planetary/apod'
const API_KEY = 'FReI7zlIqxtAiVvJzV7ClEh3OPmltJTMrumS7JP6' // Replace with your API key
export function getAPOD (date = '') {
return axios.get(`${ROOT_URL}?api_key=${API_KEY}&date=${date}`)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment