Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm looking into releasing a public REST API, which I'd like to keep protected via API keys. Services like Mashery offer API management services; per their spec sheet, they offer:

  • API registration, access and self-service provisioning
  • Key issuance and credential management
  • Usage throttling and limiting tied to key, user, method or group
  • Intelligent caching of frequently used calls
  • Business rules configuration based on filters, parameters, and methods

Are there free (either as in beer, or as in freedom) tools/services out there that offer any of these features? Articles that describe best practices?

I happen to be working in a Perl/Unix environment, but am interested in other solutions as well. I can't afford Mashery, and reinventing the wheel is a pain. Thanks.

share|improve this question
can you explain what a difference between Mashery and simple Subversion? – Avram Feb 11 '09 at 13:50
18  
Subversion is a source control system. Mashery is a hosted API management platform. They're not really comparable, any more than say Photoshop and Gmail. – Anirvan Feb 14 '09 at 23:46
1  
LOL ^^ "any more than say Photoshop and Gmail" -- this was the best laugh of the day so far :) – amphibient Sep 24 '12 at 19:07

closed as off topic by Dave Jarvis, DocMax, bmargulies, Bohemian, Graviton Jan 5 at 9:26

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

12 Answers

up vote 8 down vote accepted

Great question :) - Actually there is a free (as in beer) API management solutions - using 3scale you can list your API, set usage limits for different types of plans and manage sign-ups. The service is free unless you charge for API access, in which case there's a commission.

The service appears listed in the 3scale marketplace right now, but there'll be a white label solution out soon which wont be free but at a very accessible price point. We'd be happy to set anybody interested up with an early account (just mail me at steve@3scale.net).

Steven Willmott, Tech lead / 3scale

share|improve this answer

Yes. Apigee provides self-service, freemium API management, specifically analytics and rate limiting. It's free for use under 10,000 requests per hour.

It's in private preview but anybody can sign up for an invite. Once you get the invite it sets up immediately - you create a proxy and use that new proxy URL (or map to your own domain).

You can also use it for analytics on APIs you are consuming.

Its from Sonoa Systems and we built it on our API router we use for our 50 enterprise customers (banks, media companies, etc.) So it's basically a freemium, simplified web version of our enterprise product.

cheers, Scott Regan, Apigee team (scott@apigee.com)

share|improve this answer

Api Axle is probably worth a serious look. It's missing the fancy statistics dashboards that the bigger guys offer but has an API which would allow you to build your own easily. Other features include:

share|improve this answer

We have announced our product (WSO2 API Manager) (see wso2.com/products/api-manager/) which is 100% open source under Apache license. You can join the beta program now or wait for the final release.

The work is being done openly on architecture@wso2.org; feel free to join! Milestone builds are being released regularly thru that as well.

share|improve this answer
More information can be found at http://wso2.com/products/api-manager – Denis Weerasiri Apr 5 '12 at 20:56

I suspect that this sort of thing is almost always too application specific to make a completely general software component for it. (I don't know how well Mashery's service works, but I'm sure a good deal of care and attention goes into it).

In any case, the hard part is exposing your internal systems as useful externals APIs. Keeping track of API keys etc isn't that hard.

share|improve this answer

WebServius ( http://www.webservius.com ) does just that (API key management and more, free for free APIs within reasonable limits).

share|improve this answer

I would like to recommend api management project varnish-apikey. We are using Varnish http acceleartor/reverse proxy and its scripting capabilities so it provides great level of customizability. Redis is used as a database. Project is in active development please feel free to request new features.

share|improve this answer

Apigee has a free version. Try searching for Apigee To-Go, and you'll have access to free tools.

share|improve this answer

Hmmm, Mashery for free - I do wish we could afford to provide that. But then I wish for a lot of things :)

Mashery actually got started when I was at a startup that needed exactly what you're talking about. Over the past few years as we've started serving a lot of larger customers with more substantial needs, the breadth of our solution has certainly grown, along with the value that represents.

But that doesn't mean that there isn't a demand from a lot of startups for a more affordable "basic" API management solution that incorporates all or most of the features you mention. We're actively working on a solution for startups that is exactly that. Stay tuned for an announcement soon.

Cheers -

Oren Michels CEO Mashery

share|improve this answer

We use CloudGate from Managed Methods. It does have a free version that includes these types of features around authentication, authorization, throttling, key management, routing and monitoring, response caching etc...

Brian

share|improve this answer

If you want to you can also use Google Analytics to track some API usage, as detailed in this blog post:

http://blog.maartenballiauw.be/post/2012/01/20/Tracking-API-usage-with-Google-Analytics.aspx

The GitHub project is here:

https://github.com/maartenba/GoogleAnalyticsTracker

share|improve this answer

Probably , this is a late answer. Here's a couple api management services worth looking at -

  1. 3scale dot net (Free - 150,000 API calls/day -> 4,500,000 API calls/month)
  2. apigee dot com (Free - 3,500,000 API requests/month)

Hope it helps.

share|improve this answer

protected by Community Sep 22 '12 at 13:06

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.