UNPKG

formula1.js

Version:
18 lines (13 loc) 419 B
import axios from 'axios'; const baseURL = 'https://ergast.com/api/f1'; export const Request = async (url: string, params?: string): Promise<any> => { const data = await axios.get( `${url}.json${params != null ? `?${params}` : ''}`, { baseURL, responseType: 'json', } ); if (data.status != 200) throw new Error('Request failed'); return data.data; };