Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Ruby

nishantr
nishantr
6,326 Points

what exactly is an "API".

I know it is an application programming interface, but how do you explain it to a person with minimum knowledge of programming and haven't programmed before? and how the API syntax looks like?

3 Answers

Allison Hanna
Allison Hanna
36,222 Points

An API is an application programming interface. "In computer programming, an application programming interface (API) is a set of routine definitions, protocols, and tools for building software and applications." It's a bit of a broad topic. In one sense, it's a way to interface applications to each other, getting information from one to use in another. https://en.wikipedia.org/wiki/Application_programming_interface

Steven Parker
Steven Parker
231,008 Points

:point_right: An API is essentially a specification for how software components will interact.

This specification may include routines and/or protocols and/or tools. Syntax will be part of the protocol specification and will differ with each API.