_API keys are unique data strings used to authenticate a user and enable access to privileged operations on Circle APIs. All Circle APIs use API keys as the mechanism to authenticate client requests. Your API key should be kept confidential and secure at all times._
Authentication is required for all API requests; without it, the requests will fail.
All API requests must be made over HTTPS.
To obtain the API key, visit the “Developer” section in sandbox and click “get new API key.” Set the key in the Authorization header of the request you send from your backend server. Use the header format: `
Bearer YOUR_API_KEY
`.
# API Authentication
API requests without authentication will fail. It is also important to note that all API requests must be made over HTTPS.
# Testing Authentication
To verify that your API key is correctly set up, run the command below, which causes your code to hit a read endpoint (in this case, the [configuration endpoint](🔗)).
Successful Response
Error Response