ReviewTycoon has a REST API so you can manage your review sites programmatically — handy if you run many sites, want to bulk-import offers, or connect ReviewTycoon to your own tools and scripts.
The API is in beta. It covers your review sites, offers, articles and categories. Everything is JSON in and JSON out.
Getting your API key
Log in to the dashboard and go to My Profile → API. Click Generate API key. Keep this key secret — anyone with it can manage your sites. You can regenerate it at any time; the old key stops working immediately, so update your integrations when you do.
Authentication
Send your key as a Bearer token in the Authorization header of every request:
Authorization: Bearer your-api-key
The base URL for all endpoints is https://cms.reviewtycoon.com/api/v1. For example, to list your review sites:
curl https://cms.reviewtycoon.com/api/v1/sites \
-H "Authorization: Bearer your-api-key"
What you can do
- Review sites — list your sites and fetch a single site.
- Categories — list, fetch, create, update and delete categories on a site.
- Offers — list, fetch, create, update and delete offers (deletes are soft/recoverable). You can filter a site's offers by category.
- Articles — list, fetch, create, update and delete articles, also filterable by category.
Everything you can only see under your own account: the API is scoped to your sites, so you can never reach another customer's data.
Full reference
The complete list of endpoints, parameters and example requests and responses is on the API documentation page. It always shows the current endpoints and, when you are logged in, your own API key ready to copy.