Feedspace API uses Basic Authentication for all API requests. You must provide your username and password in the Authorization header using the Basic Auth scheme. ⚠️ Keep your credentials secure! Do not share your username or password with others or expose them in any client-side code (browsers, apps). Credentials should be securely loaded from an environment variable or key management service on the server. Credentials are provided via the Authorization header in the following format:
Authorization: Basic BASE64_ENCODED_CREDENTIALS
Where BASE64_ENCODED_CREDENTIALS is the Base64 encoding of username:password.

Example Request

curl https://api.feedspace.io/v3/{ENDPOINT} \
  --header 'Authorization: Basic <encoded-value>'
All API endpoints require authentication using valid Basic Auth credentials.