vote up 3 vote down star

Just curious, what's the best API that anyones ever used & what was the development process that led to that API being so good? (Or was it something else) Open source, proprietary, whatever code you've come into contact with.

flag

29 Answers

vote up 14 vote down

The .Net API, all the way.

link|flag
1  
+1. Incredibly well thought out and very well laid out. – FlySwat Sep 19 '08 at 1:25
1  
+1, is there any other? :) – ginzotech Mar 11 at 15:41
vote up 12 vote down

I don't know if you accept jQuery as a framework, but anyway: it's amazing (at least if you have fighted with JavaScript without jQuery earlier)

link|flag
The problem I have with jQuery is actually that it's not really an API anymore, it's basically a language in it's own right. – annakata Mar 11 at 15:15
vote up 8 vote down

The best API I've used so far is the TurboVision textmode gui/application framework library that came with Turbo Pascal.

It was very simple to use, could do things out of the box that the win32 api still cannot do (like doing automatic resizable dialogs). It was almost bug-free, performend very well even on slow machines, and from a software design point of view it was simply a masterpiece.

link|flag
+1 really liked it. Though in retrospect it was more the jump with what there was before. – Marco van de Voort May 23 at 15:28
Yep. I think that was it.. After all the years a I came across a well designed gui interface.. – Nils Pipenbrinck May 23 at 17:11
vote up 8 vote down

Boost has been my best experience as a developer. I think this qualifies as an API.

link|flag
vote up 5 vote down

WPF, hands down. It's thought out, elegant, and the power that comes from Dependency Properties, Routed Commands, and the Style/templating framework is genius.

link|flag
vote up 4 vote down

The Spring Framework boasts an exceptionally easy to use API, with excellent documentation to get you started, if you can be bothered to RTFM, of course ;)

link|flag
+1 for The expression language component within same – Ruben Bartelink Feb 26 at 15:45
vote up 4 vote down

Qt - undoubtedly. Because of its extensiveness, but mainly its depth and the amount of good thought and design practice they placed into it.

After a very short time with Qt you reach a stage it takes you only a few seconds to find the classes/methods you need, because everything is organized in a very intuitive manner. Memory management is handled beautifully, and you hardly need to worry for dynamic (dis)allocation for GUI classes. The MOC-based signals and slots mechanism is one of the best I've seen for decoupled message passing. It continues to amaze me that something as flexible can be done in C++ (with very little help from MOC).

link|flag
vote up 4 vote down

Flickr and Twitter. Flickr is still my gold reference for web apis. Twitter I didn't grow to appreciate until I saw Mike Verdon's Python Twitter Tools and just how few lines of code it took to use the API.

link|flag
vote up 4 vote down

The award winning Java Collections API.

http://java.sun.com/j2se/1.4.2/docs/guide/collections/

link|flag
vote up 3 vote down

I haven't used that many different APIs, but I find that both the .Net and Java API are pretty remarkable. Compared to the APIs available in C, C++, and PHP, they are pretty remarkable.

link|flag
Java Collections is pretty good. Not perfect, but good! – broady Sep 20 '08 at 3:31
vote up 3 vote down

It depends on the language, as for me, for C++, Qt is a good API. They have pretty much most of the common used APIs (network, file, DB, string, etc). As for the licensing, it is free for Open Source projects, but for commercial projects, you need to buy the license (it is per developer, don't know of site licenses). They also have support for Java, but I haven't used that yet. And also API for embedded devices (smart phones, etc). Nokia just bought Qt's company Trolltech, but they still committed to cater for their existing QT API users.

note: Qt is now licensed under the LGPL, meaning it's free for commercial use.

link|flag
Qt is now LGPL meaning you don't need to buy a license for developing commercial products. Please correct the misinformation ;) qtsoftware.com/about/news/… – Iraimbilanja Apr 19 at 12:33
took the liberty to edit your post. – Iraimbilanja Apr 20 at 9:14
vote up 2 vote down

The Perl DBI.

Same API across different databases (which was a big thing when it came out), proper support for the all-important bind variables, and so much more powerful/less verbose than for example JDBC. Just compare the number of steps you need with pure JDBC (without Jakarta Commons DbUtils) to do a selectall_arrayref.

link|flag
vote up 2 vote down
  • The Microsoft .NET Framework Base Class Libraries
  • jQuery
  • LINQ (both API and language extensions)
  • Currently digging around in Expression Studio AddIn model. Very clean, can get stuff done with no documentation available.
link|flag
vote up 2 vote down

OpenGL, just for making it so simple to get into 3D programming with such a small learning curve (at first at least)

link|flag
vote up 1 vote down

I've always been impressed with the .Net and Java class libraries. Great naming, well-organized, and object-oriented. I'm also becoming impressed with Apple's frameworks in Objective C.

In contrast, the worst I've ever worked with are Boost and the C++ STL. Cryptic or non-intuitive naming, huge learning curves, and confusing error messages.

link|flag
vote up 1 vote down

The XNA framework has struck me as quite well laid out, actively supported (for the moment) and reasonably documented. It's put down enough rails to ease the uninitiated into game development, providing multiple platform/Live support as well no less. The targeted sample kits are also a huge bonus to the documentation.

link|flag
vote up 1 vote down

Shoes for Ruby. In my experience it's the very quickest, simplest API for throwing together a simple application, nifty game, handy tool, etc. with a quick and dirty GUI. If you're writing code for yourself, look no further.

See some examples.

link|flag
vote up 1 vote down

The gtk+ api... I was pretty pissed of at not having syntax for oop when using it from C, however vala really makes you see how fun and simple it actually is as an api.

link|flag
vote up 0 vote down

Sharepoint has a pretty nice API. I haven't used it in production code, but I have played around with it.

There are some frameworks that I don't really like that also have pretty sweet API's. SQL Server Reporting services is one of them. I never really like getting into SSRS, but if you have a report that you want to run and export to pdf or excel in a batch format, the API is a life saver. MS CRM also has a pretty good API.

link|flag
vote up 0 vote down

Although complex and sometimes confusing, the Eclipse Rich Client Platform with SWT has been fantastic for generating applications.

link|flag
vote up 0 vote down

I really liked the SQL-DMO library the first time I used it (SQL 2000), and ended up writing several utilities around it. The nice thing was it exposed nearly every aspect of a SQL server to your code, making it possible to write an app that could do lots of the fancy things that Enterprise Manager could do, but in a way that was easy for non-technical users.

link|flag
vote up 0 vote down

The Java API. I like it very much, even when I don't like the language too much.

link|flag
The Java API is horrible, just look at java.util.date and tell me that people were not smoking weed when they wrote it. – FlySwat Sep 19 '08 at 1:25
vote up 0 vote down

Eclipse RCP has a very well thought out API. It's well documented and intuitive.

link|flag
vote up 0 vote down

Smalltalk-80.

link|flag
vote up 0 vote down

I think the most comfortable API for developer is Cocoa - rich abilities, easy to use, good documentation bindings for many programming languages.

link|flag
You're joking, right? Cocoa doesn't even have a NSLinkedList. – broady Sep 20 '08 at 3:34
vote up 0 vote down

Java API (including Swing/AWT :o) Just getting to grips with C# (.NET API) and everything seems in order there.

Oh, and any API that I've created! :p

link|flag
vote up 0 vote down

I love the Windows API I've worked with so far, which is entirely pre-Vista. It is extremely customizable and well designed. Very efficient and it allows you to override almost anything. Most of all I found it very unambiguous.

Having said that, I don't think I'd be interested in looking at the new API changes or additions in Vista.

link|flag
vote up 0 vote down

Emacs Lisp and its libraries together make up the best "API" I have ever used, hands down. It allowed people to do things the original creators of Emacs, or really any developer of a text editor, had ever dreamed of.

Emacs Lisp had aspect-oriented programming long before most people had ever heard of AOP. It was a dynamic language before anybody who spoke English knew about Ruby. It had garbage collection when most people were still cursing over segfaults.

And yet, with all that power to create web browsers and symbolic math packagaes and IDEs, it was still extremely useful and powerful for extending the text editor to actually edit text in more efficient ways for its individual users. No two people use the same Emacs because of it.

link|flag
vote up 0 vote down

After using SDL, PyGame was a breath of fresh air.

link|flag

Your Answer

Get an OpenID
or

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