Skip to content

Releases: Thiru-Malai/current-affairs-api

v0.0.2

17 Jun 09:08
Compare
Choose a tag to compare

Features:

  1. International Current Affairs
  2. Recent Current Affairs Of India

v0.0.1

15 Jun 15:20
3efd931
Compare
Choose a tag to compare

Features:

  1. Today's Current Affairs

GET: /today

const axios = require('axios');

const options = {
  method: 'GET',
  url: 'https://current-affairs-of-india.p.rapidapi.com/today',
  headers: {
    'X-RapidAPI-Key': '9bff012c16msh5470f9994d044c2p1bd648jsn0748463ea5fd',
    'X-RapidAPI-Host': 'current-affairs-of-india.p.rapidapi.com'
  }
};

try {
	const response = await axios.request(options);
	console.log(response.data);
} catch (error) {
	console.error(error);
}
  1. Quiz For The Day

GET: /today-quiz

const axios = require('axios');

const options = {
  method: 'GET',
  url: 'https://current-affairs-of-india.p.rapidapi.com/today-quiz',
  headers: {
    'X-RapidAPI-Key': '9bff012c16msh5470f9994d044c2p1bd648jsn0748463ea5fd',
    'X-RapidAPI-Host': 'current-affairs-of-india.p.rapidapi.com'
  }
};

try {
	const response = await axios.request(options);
	console.log(response.data);
} catch (error) {
	console.error(error);
}