Access API Keys
All HarpFi API requests require an API key to authenticate. These keys can be generated and retrieved from the API management section of your dashboard.
To authenticate, you need to include an Authorization header in all of your requests. In this header, you must state that you're using an API key (similar to HTTP basic access authentication).
Bash
curl -i -X POST \ 'https://api.harpfi.com/v1/payments/outflows' \ -H 'Authorization: ApiKey YOUR_API_KEY_HERE'
Important: Your API keys carry many privileges, so be sure to keep them secure!
Do not share your secret API keys in publicly accessible areas such as GitHub, client-side code, and so forth.