Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Web API

From Wikipedia, the free encyclopedia
HTTP-based application programming interface on the web
Screenshot of web API documentation written by NASA

Aweb API is anapplication programming interface (API) for either aweb server or aweb browser. As a web development concept, it can be related to a web application'sclient side (including anyweb frameworks being used). A server-side web API consists of one or more publicly exposedendpoints to a defined request–response message system, typically expressed inJSON orXML by means of anHTTP-based web server.

Aserver API (SAPI) is not considered a server-side web API, unless it is publicly accessible by a remote web application.

Client side

[edit]

Aclient-side web API is a programmatic interface to extend functionality within aweb browser or other HTTP client. Originally these were most commonly in the form of nativeplug-inbrowser extensions however most newer ones target standardizedJavaScript bindings.

TheMozilla Foundation created their WebAPI specification which is designed to help replace native mobile applications withHTML5 applications.[1][2]

Google created theirNative Client architecture which is designed to help replace insecure native plug-ins with secure nativesandboxed extensions and applications. They have also made this portable by employing a modifiedLLVMAOT compiler.

Server side

[edit]

Aserver-side web API consists of one or more publicly exposedendpoints to a definedrequest–response message system, typically expressed inJSON orXML. The web API is exposed most commonly by means of anHTTP-basedweb server.

Mashups areweb applications which combine the use of multiple server-side web APIs.[3][4][5]Webhooks are server-side web APIs that take input as aUniform Resource Identifier (URI) that is designed to be used like a remotenamed pipe or a type ofcallback such that the server acts as a client to dereference the provided URI and trigger an event on another server which handles this event thus providing a type of peer-to-peerIPC.

Endpoints

[edit]

Endpoints are important aspects of interacting with server-side web APIs, as they specify where resources can be accessed by third-party software. Usually the access is via a URI to which HTTP requests are posted, and from which the response is thus expected. Web APIs may be public or private, the latter of which requires anaccess token.[6]

Endpoints need to be static, otherwise the correct functioning of software that interacts with them cannot be guaranteed. If the location of a resource changes (and with it the endpoint) then previously written software will break, as the required resource can no longer be found at the same place. As API providers still want to update their web APIs, many have introduced a versioning system in the URI that points to an endpoint.

Resources versus services

[edit]

Web 2.0 Web APIs often use machine-based interactions such asREST andSOAP. RESTful web APIs useHTTP methods to access resources via URL-encoded parameters, and useJSON orXML to transmit data. By contrast,SOAP protocols are standardized by theW3C and mandate the use ofXML as the payload format, typically overHTTP. Furthermore,SOAP-based Web APIs useXML validation to ensure structural message integrity, by leveraging theXML schemas provisioned withWSDL documents. AWSDL document accurately defines the XML messages and transport bindings of aWeb service.

Documentation

[edit]

Server-side web APIs are interfaces for the outside world to interact with the business logic. For many companies this internal business logic and the intellectual property associated with it are what distinguishes them from other companies, and potentially what gives them a competitive edge. They do not want this information to be exposed. However, in order to provide a web API of high quality, thereneeds to be a sufficient level of documentation. One API provider that not only provides documentation, but also links to it in its error messages isTwilio.[7]

However, there are now directories of popular documented server-side web APIs.[8]

Growth and impact

[edit]

The number of available web APIs has grown consistently over the past years, as businesses realize the growth opportunities associated with running an open platform, that any developer can interact with.ProgrammableWeb tracks over 24000 Web APIs that were available in 2022, up from 105 in 2005.

Web APIs have become ubiquitous. There are few major software applications/services that do not offer some form of web API. One of the most common forms of interacting with these web APIs is via embedding external resources, such as tweets, Facebook comments, YouTube videos, etc. In fact there are very successful companies, such asDisqus, whose main service is to provide embeddable tools, such as a feature-rich comment system.[9] Any website of the TOP 100Alexa Internet ranked websites uses APIs and/or provides its own APIs, which is a very distinct indicator for the prodigious scale and impact of web APIs as a whole.[10]

As the number of available web APIs has grown, open source tools have been developed to provide more sophisticated search and discovery. APIs.json provides a machine-readable description of an API and its operations, and the related project APIs.io offers a searchable public listing of APIs based on the APIs.json metadata format.[11][12]

Business

[edit]

Commercial

[edit]

Many companies and organizations rely heavily on their Web API infrastructure to serve their core business clients. In 2014Netflix received around 5 billion API requests, most of them within their private API.[13]

Governmental

[edit]

Many governments collect a lot of data, and some governments are now opening up access to this data. The interfaces through which this data is typically made accessible are web APIs. Web APIs allow for data, such as "budget, public works, crime, legal, and other agency data"[14] to be accessed by any developer in a convenient manner.

Example

[edit]

An example of a popular web API is theAstronomy Picture of the Day API operated by the American space agencyNASA. It is a server-side API used to retrieve photographs of space or other images of interest toastronomers, andmetadata about the images.

According to the API documentation,[15] the API has one endpoint:

https://api.nasa.gov/planetary/apod[permanent dead link]

The documentation states that this endpoint acceptsGET requests. It requires one piece of information from the user, anAPI key, and accepts several other optional pieces of information. Such pieces of information are known asparameters. The parameters for this API are written in a format known as aquery string, which is separated by aquestion mark character (?) from the endpoint. Anampersand (&) separates the parameters in the query string from each other. Together, the endpoint and the query string form aURL that determines how the API will respond. This URL is also known as aquery or anAPI call.

In the below example, two parameters are transmitted (orpassed) to the API via the query string. The first is the required API key and the second is an optional parameter — the date of the photograph requested.

https://api.nasa.gov/planetary/apod?api_key=DEMO_KEY&date=1996-12-03

Visiting the above URL in a web browser will initiate a GET request, calling the API and showing the user a result, known as areturn value or as areturn. This API returnsJSON, a type of data format intended to be understood by computers, but which is somewhat easy for a human to read as well. In this case, the JSON contains information about a photograph of awhite dwarf star:

{"date":"1996-12-03","explanation":"Like a butterfly,\r a white dwarf star begins its life\r by casting off a cocoon that enclosed its former self. In this\r analogy, however, the Sun would be\r a caterpillar\r and the ejected shell of gas would become the prettiest of all!\r The above cocoon, the planetary nebula\r designated NGC 2440, contains one of the hottest white dwarf stars known.\r The white dwarf can be seen as the bright dot near the photo's\r center. Our Sun will eventually become a \"white dwarf butterfly\",\r but not for another 5 billion years. The above false color image recently entered the public domain\r and was post-processed by F. Hamilton.\r","hdurl":"https://apod.nasa.gov/apod/image/9612/ngc2440_hst2_big.jpg","media_type":"image","service_version":"v1","title":"Cocoon of a New White Dwarf\r\nCredit:","url":"https://apod.nasa.gov/apod/image/9612/ngc2440_hst2.jpg"}

The above API return has been reformatted so that names of JSON data items, known askeys, appear at the start of each line. The last of these keys, namedurl, indicates a URL which points to a photograph:

https://apod.nasa.gov/apod/image/9612/ngc2440_hst2.jpg

Following the above URL, a web browser user would see this photo:

Cocoon of a New White Dwarf

Although this API can be called by anend user with a web browser (as in this example) it is intended to be called automatically by software or by computer programmers while writing software. JSON is intended to beparsed by a computer program, which would extract the URL of the photograph and the other metadata. The resulting photo could be embedded in a website, automatically sent via text message, or used for any other purpose envisioned by a software developer.

See also

[edit]

References

[edit]
  1. ^"Mozilla's WebAPI Wants to Replace Native Apps With HTML5 | Webmonkey | Wired.com".en-US. 2013-12-05. Archived fromthe original on 2013-12-05. Retrieved2022-01-13.
  2. ^Mozilla WebAPI Wiki
  3. ^"What is mash-up? - Definition from WhatIs.com".WhatIs.com.Archived from the original on Apr 24, 2015. Retrieved2015-11-04.
  4. ^"Mashup Dashboard". ProgrammableWeb.com. 2009. Archived fromthe original on May 7, 2021. RetrievedMay 29, 2021.
  5. ^Maximilien, E. Michael; Ranabahu, Ajith; Gomadam, Karthik (Sep–Oct 2008). "An Online Platform for Web APIs and Service Mashups".IEEE Internet Computing.12 (5):32–43.doi:10.1109/MIC.2008.92.S2CID 14949046.
  6. ^"Changes coming in Version 1.1 of the Twitter API".en-US. 16 August 2012. Retrieved1 August 2019.{{cite web}}: CS1 maint: url-status (link)
  7. ^Mulloy, Brian.Web API Design - Crafting Interfaces that Developers Love(PDF). apigee. p. 11.
  8. ^"Public APIs".GitHub. Retrieved2025-11-14.
  9. ^"Disqus – The Web's Community of Communities".Disqus. Retrieved2015-11-04.
  10. ^"Alexa Top 500 Global Sites".www.alexa.com. Archived fromthe original on 2015-03-02. Retrieved2015-11-04.
  11. ^"APIs.json".apisjson.org. Retrieved2016-03-14.
  12. ^"APIs.io - the API search engine".apis.io. Retrieved2016-03-14.So make it clearly understandable & share your knowledge.
  13. ^"Top 10 Lessons Learned from the Netflix API - OSCON 2014, Slide 73". 2014-07-24.{{cite journal}}:Cite journal requires|journal= (help)
  14. ^"Tech Trends 2015, API economy".Deloitte University Press. Archived fromthe original on 2016-08-15. Retrieved2015-11-03.
  15. ^"Astronomy Picture of the Day".NASA APIs.

Further reading

[edit]
Protocols
Server APIs
Apache modules
Topics
Browser APIs
Web APIs
WHATWG
W3C
Khronos
Others
Topics
Related topics
Business models
Technologies
Applications
Platforms
Infrastructure
Retrieved from "https://en.wikipedia.org/w/index.php?title=Web_API&oldid=1326494105"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2026 Movatter.jp