Welcome to the Freemius API Documentation!
You can use our API to access Freemius API endpoints, which can get information on various aspects of Freemius.
If you're using Freemius for a WordPress product, please check out our official SDK.
We support Bearer authentication. You can get the API Key from the Freemius Developer Dashboard for a product.
More information can be found under the Security section of every endpoint.
https://api.freemius.com/v1/
https://docs.freemius.com/_mock/api/
https://api.freemius.com/v1/products/{product_id}/addons.json
https://docs.freemius.com/_mock/api/products/{product_id}/addons.json
curl -i -X GET \
'https://api.freemius.com/v1/products/1234/addons.json?count=10&enriched=false&fields=id%2Cname%2Cslug&offset=10&show_pending=false' \
-H 'Authorization: Bearer <YOUR_AccessToken_HERE>'
{ "addons": [ { … } ] }
https://api.freemius.com/v1/products/{product_id}/emails/addresses.json
https://docs.freemius.com/_mock/api/products/{product_id}/emails/addresses.json
curl -i -X GET \
'https://api.freemius.com/v1/products/1234/emails/addresses.json?fields=id%2Cname%2Cslug' \
-H 'Authorization: Bearer <YOUR_AccessToken_HERE>'
The list of all the email addresses associated with a product.
The date and time the entity was created, under UTC timezone.
The date and time the entity was updated, under UTC timezone. If null
then the entity was never updated since its creation.
The technical support representative email address.
The label to the technical support representative email address.
The happiness representative email address.
The label to the happiness representative email address.
{ "id": "123456", "created": "2025-01-01 00:00:00", "updated": "2025-01-01 00:00:00", "plugin_id": "123456", "store_id": "1234", "general": "foo@example.com", "general_name": "Company Support", "dont_reply": "donotreply@example.com", "dont_reply_name": "Do Not Reply", "personal": "personalmanager@example.com", "personal_name": "John Doe", "personal_technical": "techsupport@example.com", "personal_technical_name": "Tech Support", "personal_setup": "support@example.com", "personal_setup_name": "Support", "support": "support@example.com", "support_name": "Support" }
https://api.freemius.com/v1/products/{product_id}/emails/addresses.json
https://docs.freemius.com/_mock/api/products/{product_id}/emails/addresses.json
curl -i -X DELETE \
https://api.freemius.com/v1/products/1234/emails/addresses.json \
-H 'Authorization: Bearer <YOUR_AccessToken_HERE>'
No content