Skip to main content

Using API Keys in Curl

Specify the API key in the-u or --user flag. The password is an empty string. Here is an example:
curl --request GET -sL \\
     --url '<https://external.pleo.io/v1/installations/me>'\\
     -u 'enter the API key here'

Using API Keys in a Graphical User Inteface (GUI) Tool

Here, we are using Postman for reference:
  1. In the Authorization header of the request, select Basic Auth as the Auth Type.
  2. In the Username, enter the API key.
  3. In the Password, do not enter any value.
using API keys in GUI