ResourcesAuthentication
Resources

Authentication

A summary of how to authenticate your request with the API.

Overview

All requests to the Pointineer API must include a valid API key in the header. Without a valid API key, the API will reject your request. The API key is a UUID string that uniquely identifies the client or organization calling the API.

Base URL

https://api.awardcharts.com/v1

Headers

HeaderRequiresDescription
X-API-KeyYesYour API key, provided in the request header.

Error Responses

When a request fails due to an invalid or missing API key, the API returns with an HTTP status code.

HTTP StatusReasonPossible Causes
401Unauthorized- Missing X-API-Key header- Invalid or unknown API key

Using the API Key

All endpoints require the X-API-Key header:

curl -X GET \
  -H "X-API-Key: <KEY>" \
  "https://api.awardcharts.com/v1/awards/search"
Was this page helpful?
Built with Documentation.AI

Last updated today