Aletheia β
  • Aletheia Data
  • Getting Started
    • General
    • Public Information
    • Magic Connect
    • Aletheia SDK
      • Aletheia SDK
    • IPFS
      • Decentralized Storage
      • Desirable Characteristics of Decentralized Storage
      • Filecoin
    • Uploader
    • MiniSearch
    • Rapid API
      • Public API Disclaimer
      • API Key
      • Open Rest API
      • How to use
      • Query Datasets
    • Bit.io
      • Getting started
      • How to use
    • ⚡Public Data NFT
      • Mint PDNFT
    • Airdrop Program
    • 🌎Open Source
  • System
    • 👷Dashboard (beta)
    • dDashboard
    • Github
    • Rapid API
    • Status System
  • We need you! 😼
    • Open Colective 🤖
    • Paypal ❣️
    • Gitcoin 👨🏽‍💻
  • Where to find us
    • Virtual Office
    • Discord
    • Twitter
  • Academy
    • Virtual Academy
Con tecnología de GitBook
En esta página
  • API Key
  • Authenticating to the API

¿Te fue útil?

  1. Getting Started
  2. Rapid API

API Key

AnteriorPublic API DisclaimerSiguienteOpen Rest API

Última actualización hace 2 años

¿Te fue útil?

API Key

To obtain an API key, subscribe to our on and follow the instructions.

Be careful with your API keys. Any abused API Key or wrongly used will be canceled.

Authenticating to the API

The Aletheia API expects HTTP Basic Auth with a valid pair of Rapid API keys. Get your ACCESS_KEYS from the link above. To authorize your requests, send an HTTP request to one of the API endpoints with the following headers:

var axios = require("axios").default;

var options = {
  method: 'GET',
  url: '<ENDPOINT_URL>',
  headers: {
    'x-rapidapi-host': '<API_HOST>',
    'x-rapidapi-key': '<API_KEY>'
  }
};

axios.request(options).then(function (response) {
	console.log(response.data);
}).catch(function (error) {
	console.error(error);
});

Note: Node.js is just one of the many laguages available.

Rapid API
https://rapidapi.com/aletheia-data-aletheia-data-default/api/aletheia2