Could anyone please tell me the meaning of API in following paragraph, that's actually about Transfer Object:

If it's likely that a business service might be asked to send or receive all or most of its data in a big, coarse-grained message, it's common for that service to provide that feature in its API.

Thanks in advance.

link|improve this question
3  
Google for it, really. First result. – Alberto Zaccagni Aug 4 '09 at 20:55
bear in mind its really easy to google "wiki API" – David Archer Aug 4 '09 at 20:57
feedback

7 Answers

up vote 6 down vote accepted

"Application Programming Interface" - a set of functions that a programmer uses to communicate with a piece of software or a service.

link|improve this answer
most plainest englishest – David Archer Aug 4 '09 at 21:03
feedback

API = Application Programming Interface. It is your formal statement of the programming interafce you offer to other components. If you are a serious service provider then you pay careful attention to the design of your API. The use of DTOs is often very appropriate in the provisision of a good interface.

Wikipedia Link

link|improve this answer
feedback

an application programming interface (API) is an interface that defines the ways by which an application program may request services from libraries and/or operating systems

see here:

Wikipedia article on API

link|improve this answer
feedback

It just means that that the object exposes methods. It's not uncommon for people to use the term API when they means methods of an object.

Edit: By the way, API means Application Programmable Interface

link|improve this answer
feedback

to add to the previous answers, let's say for the delicious websites API, in your current program, you can ask for it info on the last site that was bookmarked by a user to put it onto your website. In order to do that, delicious provides a url in their API, and you can use that with certain parameters and it will return you a html code...

Basically any sites/program that provides an API, basically enables the developers to use its database (dictated by them) and they basically provide methods to the developers in their API section

link|improve this answer
feedback

When you talk about any object's "API", you're talking about the functions (aka 'commands') you can send to that object.

link|improve this answer
feedback

API = application programming interface

The best way to compare a formal API is an contract between certain parts of your code.

If you call me in this certain way, I will always respond in that certain way.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown