What's the best API you've ever used? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T15:45:31Zhttp://stackoverflow.com/feeds/question/98354http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used4What's the best API you've ever used?luke.andrew2008-09-19T00:32:46Z2009-11-17T10:47:43Z
<p>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.</p>
http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/98371#983713Answer by Kibbee for What's the best API you've ever used?Kibbee2008-09-19T00:35:25Z2009-04-19T11:54:05Z<p>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.</p>
http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/98377#983778Answer by Nils Pipenbrinck for What's the best API you've ever used?Nils Pipenbrinck2008-09-19T00:36:23Z2009-04-19T11:54:05Z<p>The best API I've used so far is the TurboVision textmode gui/application framework library that came with Turbo Pascal. </p>
<p>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.</p>
http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/98379#983790Answer by Charles Graham for What's the best API you've ever used?Charles Graham2008-09-19T00:36:42Z2009-04-19T11:54:05Z<p>Sharepoint has a pretty nice API. I haven't used it in production code, but I have played around with it. </p>
<p>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.</p>
http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/98386#983860Answer by scubabbl for What's the best API you've ever used?scubabbl2008-09-19T00:37:55Z2009-04-19T11:54:05Z<p>Although complex and sometimes confusing, the Eclipse Rich Client Platform with SWT has been fantastic for generating applications.</p>
http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/98392#9839215Answer by Espenhh for What's the best API you've ever used?Espenhh2008-09-19T00:39:16Z2009-04-19T11:54:05Z<p>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)</p>
http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/98433#984332Answer by Thilo for What's the best API you've ever used?Thilo2008-09-19T00:47:38Z2009-04-19T11:54:05Z<p>The Perl DBI.</p>
<p>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.</p>
http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/98478#984784Answer by MetroidFan2002 for What's the best API you've ever used?MetroidFan20022008-09-19T00:54:36Z2009-04-19T11:54:05Z<p>The <a href="http://www.springframework.org/" rel="nofollow" title="Spring Framework">Spring Framework</a> boasts an exceptionally easy to use API, with excellent documentation to get you started, if you can be bothered to RTFM, of course ;)</p>
http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/98481#984810Answer by Chris Tybur for What's the best API you've ever used?Chris Tybur2008-09-19T00:55:15Z2009-04-19T11:54:05Z<p>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.</p>
http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/98482#984823Answer by Akabane for What's the best API you've ever used?Akabane2008-09-19T00:55:55Z2009-04-20T09:14:04Z<p>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.</p>
<p><strong>note</strong>: Qt is now licensed under the LGPL, meaning it's free for commercial use.</p>
http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/98493#984930Answer by Gastoni for What's the best API you've ever used?Gastoni2008-09-19T00:58:20Z2009-04-19T11:54:05Z<p>The Java API. I like it very much, even when I don't like the language too much.</p>
http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/98557#985570Answer by Wesley Tarle for What's the best API you've ever used?Wesley Tarle2008-09-19T01:11:33Z2009-04-19T11:54:05Z<p>Eclipse RCP has a very well thought out API. It's well documented and intuitive.</p>
http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/98600#986007Answer by Paul Betts for What's the best API you've ever used?Paul Betts2008-09-19T01:22:35Z2009-04-19T11:54:05Z<p>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.</p>
http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/98611#9861121Answer by iansinke for What's the best API you've ever used?iansinke2008-09-19T01:23:34Z2009-04-19T11:54:05Z<p>The .Net API, all the way.</p>
http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/99402#994020Answer by Brian for What's the best API you've ever used?Brian2008-09-19T03:48:49Z2009-04-19T11:54:05Z<p>Smalltalk-80.</p>
http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/99997#999974Answer by eliben for What's the best API you've ever used?eliben2008-09-19T06:07:47Z2009-04-19T11:54:05Z<p><strong>Qt</strong> - undoubtedly. Because of its extensiveness, but mainly its depth and the amount of good thought and design practice they placed into it.</p>
<p>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).</p>
http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/100005#1000059Answer by cdv for What's the best API you've ever used?cdv2008-09-19T06:12:06Z2009-04-19T11:54:05Z<p><a href="http://www.boost.org" rel="nofollow">Boost</a> has been my best experience as a developer. I think this qualifies as an API.</p>
http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/100010#1000100Answer by hui-viberesh for What's the best API you've ever used?hui-viberesh2008-09-19T06:13:23Z2009-04-19T11:54:05Z<p>I think the most comfortable API for developer is Cocoa - rich abilities, easy to use, good documentation bindings for many programming languages. </p>
http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/100020#1000200Answer by Richie_W for What's the best API you've ever used?Richie_W2008-09-19T06:20:56Z2009-04-19T11:54:05Z<p>Java API (including Swing/AWT :o)
Just getting to grips with C# (.NET API) and everything seems in order there.</p>
<p>Oh, and any API that I've created! :p</p>
http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/100021#1000211Answer by rubancache for What's the best API you've ever used?rubancache2008-09-19T06:21:02Z2009-04-19T11:54:05Z<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/100023#1000231Answer by bkane for What's the best API you've ever used?bkane2008-09-19T06:21:18Z2009-04-19T11:54:05Z<p>The <a href="http://en.wikipedia.org/wiki/Microsoft_XNA" rel="nofollow">XNA</a> 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.</p>
http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/100028#1000284Answer by Jonas Follesø for What's the best API you've ever used?Jonas Follesø2008-09-19T06:23:21Z2009-04-19T11:54:05Z<ul>
<li>The Microsoft .NET Framework Base Class Libraries</li>
<li>jQuery</li>
<li>LINQ (both API and language extensions)</li>
<li>Currently digging around in Expression Studio AddIn model. Very clean, can get stuff done with no documentation available.</li>
</ul>
http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/100071#1000714Answer by Parand for What's the best API you've ever used?Parand2008-09-19T06:35:39Z2009-04-19T11:54:05Z<p>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 <a href="http://mike.verdone.ca/twitter/" rel="nofollow">Python Twitter Tools</a> and just how few lines of code it took to use the API.</p>
http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/100087#1000870Answer by Agnel Kurian for What's the best API you've ever used?Agnel Kurian2008-09-19T06:44:18Z2009-04-19T11:54:05Z<p>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.</p>
<p>Having said that, I don't think I'd be interested in looking at the new API changes or additions in Vista.</p>
http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/102703#1027035Answer by vito for What's the best API you've ever used?vito2008-09-19T15:17:53Z2009-04-19T11:54:05Z<p>The award winning Java Collections API.</p>
<p><a href="http://java.sun.com/j2se/1.4.2/docs/guide/collections/" rel="nofollow">http://java.sun.com/j2se/1.4.2/docs/guide/collections/</a></p>
http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/104005#1040051Answer by Phrodo_00 for What's the best API you've ever used?Phrodo_002008-09-19T17:44:13Z2009-04-19T12:40:11Z<p>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.</p>
http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/106951#1069510Answer by Robert Sanders for What's the best API you've ever used?Robert Sanders2008-09-20T03:25:39Z2009-04-19T11:54:05Z<p>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.</p>
<p>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. </p>
<p>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.</p>
http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/106966#1069660Answer by Josh Segall for What's the best API you've ever used?Josh Segall2008-09-20T03:28:52Z2009-04-19T11:54:05Z<p>After using SDL, <a href="http://www.pygame.org/" rel="nofollow">PyGame</a> was a breath of fresh air.</p>
http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/634984#6349842Answer by JonoW for What's the best API you've ever used?JonoW2009-03-11T15:11:24Z2009-04-19T11:54:05Z<p>OpenGL, just for making it so simple to get into 3D programming with such a small learning curve (at first at least)</p>
http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/635023#6350231Answer by Kevin Conner for What's the best API you've ever used?Kevin Conner2009-03-11T15:23:34Z2009-04-19T11:54:05Z<p><a href="http://www.shoooes.net" rel="nofollow">Shoes</a> 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.</p>
<p>See some <a href="http://www.the-shoebox.org/" rel="nofollow">examples</a>.</p>
http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/1747970#17479700Answer by Adam for What's the best API you've ever used?Adam2009-11-17T10:40:06Z2009-11-17T10:40:06Z<p>first you should define what makes an API great. </p>
<p>For me, it's the documentation, which determines how easy the API is to use, and what's the learning curve. There's nothing I fear more than Trying out a new API when I'm on a deadline.</p>
<p>That said, I don't know if it counts as an API exactly, but the documentation for Wordpress developers (for creating plugins as well as themes) is probably the best around, very tidy, very clear, and lots of relevant examples.</p>
<p>The Twitter API, on the other hand, has a horrible documentation in my opinion. very messy and incomplete.</p>
http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/1748023#17480230Answer by Blake7 for What's the best API you've ever used?Blake72009-11-17T10:47:43Z2009-11-17T10:47:43Z<p>Call me old fashion but I have always liked the <em>Win16/Win32</em> API's. They where both very similar to the <em>OS/2</em> API which I thought was very close to perfection. </p>
<p>The <em>OS/2</em> GDI layer was crap (or too demanding for the hardware of the time) but other than that it was a great API.</p>