The AnydealsUK API uses secure token-based authentication to ensure that only authorised users can access deal feeds, account data, and automated integrations. This page explains how authentication works, where to find your API key, how to use it correctly, and best practices to keep your account secure.
1. Overview of API Authentication #
AnydealsUK uses a Bearer Token authentication system. This means every API request must include a valid API key associated with your account.
Without a valid key:
- API access is denied
- Feed URLs will not load
- Requests will return a
401 Unauthorizederror
Each user receives a unique API key when they create their account or subscription.
2. Where to Find Your API Key #
Your API key is located inside your AnydealsUK dashboard.
How to locate your API key: #
- Log in to your AnydealsUK dashboard.
- Navigate to My Account
- Your API key will be displayed
- You may copy it for integration into your tools or scripts.
API keys may differ depending on your tier or subscription.
3. How to Use Your API Key #
Attach your API key to your requests using an Authorization header:
Authorization: Bearer YOUR_API_KEY
Example Request #
GET https://anydealsuk.com/api/v1/status
Authorization: Bearer 12345ABCDEF
If the API key is missing or invalid, the system returns:
401 Unauthorized
4. Using API Keys With Feed URLs #
Most users access feeds directly via URLs that embed the API key:
https://anydealsuk.com/api/v1/feeds/{API_KEY}/{feed_type}/{interval}.csv
Example:
https://anydealsuk.com/api/v1/feeds/ABC123/main/10m.csv
This is valid and commonly used for:
- WP All Import
- Telegram / Discord bots
- Cron jobs
- Automations
However, the embedded key must be protected.
5. API Key Permissions #
Your API key allows:
- Viewing and downloading your feeds
Your key does NOT allow:
- Changing billing settings
- Accessing other users’ data
- Modifying your affiliate IDs (dashboard-only action)
6. Rotating / Regenerating Your API Key #
If your API key is exposed or shared accidentally, you should rotate it immediately.
How to regenerate your key: #
- Open the AnydealsUK dashboard
- Go to Contact Us
- Send a message asking to regenerate your API key
- A new key will be created
- All old API URLs will stop working instantly
You must update all tools and scripts using the previous key.
7. API Authentication Errors #
Common errors include:
401 Unauthorized #
- Missing API key
- Incorrect API key
- Expired subscription
- Key revoked or regenerated
403 Forbidden #
- Subscription does not allow access to this feed type
- Attempting to access a Pro feed with a non-Pro plan
429 Too Many Requests #
- Rate limit exceeded for your subscription tier
500 Server Error #
- Unexpected error; try again or report if persistent
8. Security Best Practices #
To prevent misuse of your account, follow these guidelines:
- Never post your API key publicly
- Do not share feed URLs outside your organisation
- Store keys in environment variables, not in public code
- Rotate your key if you suspect exposure
- Use server-to-server requests instead of client-side requests
If you believe your API key has been compromised, regenerate it immediately.
9. Summary #
Authentication is simple and secure using the AnydealsUK API key system. Your key grants access to your personal feeds and tools, and by following best practices, you ensure your data and revenue remain protected.
In the next section, we will explore the full list of API Endpoints and how to use them.

