General statistics
List of Youtube channels
Youtube commenter search
Distinguished comments
About
Tony Zhou
ByteByteGo
comments
Comments by "Tony Zhou" (@ReflectionOcean) on "What Is REST API? Examples And How To Use It: Crash Course System Design #3" video.
API is a way for computers to talk to each other. REST is a common standard to build web based APIs. The API resources are identified by nouns rather than verbs. The HTTP methods are verbs for actions to the resource. GET/PUT/DELETE are idempotent methods. POST is not. Versioning allows API evolution.
1