Skip to content

Latest commit

 

History

History
33 lines (17 loc) · 1.33 KB

File metadata and controls

33 lines (17 loc) · 1.33 KB

RESTful API

Definition

RESTful1 API (or REST-API, or Representational State Transfer Application Programming Interface) is a layer allows to access and manipulate textual representation of the web resources (eg. Entities) by using a uniform and predefined set of stateless operations.

In other words, REST-API provides programmatic access to data and functionality for data scientists and engineers, and anyone else who prefers coding to the user interface.

Authentication section explains how to authenticate and access the API.

Query Structure section provides information about REST-API requests and responses.

Endpoints section contains information about different API versions and how to access endpoints under a particular one.

API client section explains how to access REST-API via Python.

API examples section contains examples of performing the most common tasks.

Links

///FOOTNOTES GO HERE///

Footnotes

  1. Wikipedia Representational State Transfer, Website