Authentication

IntroductionCopied!

Authentication to the Quartr API is performed via API keys. This method allows users to authenticate their requests securely and conveniently while keeping the Quartr account credentials out of the code.

Generating a new API KeyCopied!

Generate via our Portal

API Key Generation The easiest and recommended way to generate and manage keys is by logging in to the Quartr API Portal and using the provided methods to create, copy, and delete API Keys from the “API Keys” section of the Portal.

Generate through a POST request

API keys can also be generated by making a POST request to the /auth/generate-api-key endpoint. This request must include your Quartr username and password in the request body, along with an optional validityPeriod parameter to set the validity period of the key in days (default is 90 days).

Here's a brief example of how to generate an API key:

const username = 'your_username'; // replace with your username
const password = 'your_password'; // replace with your password
const validityPeriod = 45; // set the validity period in days

const generateApiKey = async () => {
  try {
    const response = await fetch('https://api.quartr.com/public/v1/auth/generate-api-key', {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json',
      },
      body: JSON.stringify({ username, password, validityPeriod }),
    });

    if (!response.ok) {
      // Handle non-2xx HTTP responses
      const errorData = await response.json();
      throw new Error(`Error ${response.status}: ${errorData.message}`);
    }

    const data = await response.json();
  } catch (error) {
    console.error('Error:', error.message);
  }
};

const apiKey = await generateApiKey();

The response from the server will include your new API key and its validity period:

{
    "apiKey": "4ece3c8b1ce6a15226945fcd400b8d8076e5cfe2138da3079ac2644b6b383ea1",
    "validTo": "2023-11-13T17:48:26.999Z"
}

Use API keysCopied!

To use your API key for authentication, include it in the headers of your API requests:


const apiKey = "api_key"; // replace with your api key

const fetchCompany = async ({ ticker, eventType = 'all', country = 'US' }) => {
  const url = new URL(`https://api.quartr.com/public/v1/companies/ticker/${ticker}/`);
  url.searchParams.append('eventType', eventType);
  url.searchParams.append('country', country);

  try {
    const response = await fetch(url, {
      headers: {
        'X-API-KEY': apiKey
      }
    });

    if (!response.ok) {
      throw new Error(`HTTP error! status: ${response.status}`);
    }

    const data = await response.json();
  } catch (error) {
    console.error(error);
  }
};

const company = await fetchCompany({
  ticker: 'AAPL',
  eventType: 'all',
  country: 'US'
});

Handle your API keysCopied!

You can manage your API keys (view all keys and delete specific keys) on the Quartr API Portal “API Keys”-section or by using the /auth/api-keys and /auth/api-key/{apiKeyId} endpoints respectively. For detailed instructions on how to use these endpoints, please refer to the Quartr API Reference Documentation.