It looks like you are using an ad blocker. That's okay. Who doesn't? But without advertising revenue, we can't keep making this site awesome. Click the link below for instructions on disabling adblock.
Welcome to the Newschoolers forums! You may read the forums as a guest, however you must be a registered member to post.
Register to become a member today!
API is the acronym for Application Programming Interface,
which is a software intermediary that allows two applications to talk
to each other. Each time you use an app like Facebook, send an instant
message, or check the weather on your phone, you're using an API.
In normal human words, an API is a thing that automatically returns info or changes info in a database when you ask it. They can be public or private.
Take the list of threads on the newschoolers form as an example. You've got a database with what is essentially a spreadsheet (or table) of thread subjects, times they were created and number of responses and views.
If the API is public, you can ask it "give me a list of the subjects with the number of views". Or "give me the 3 most recent subjects" etc.
Once you have the raw info, you can display it however you want (in blue or red or whatever).
The API might have the ability to return the information is a lot of different ways or it might only let you ask a single way. Kinda depends. You can also tell the API to change things in the database (table/spreadsheet). That is what happens when we post. It increments the reply, adds the info you typed, etc.