← Back

REST API(REST)

The introduction of Rest API

The most popular API design style. Uses HTTP methods (GET/POST/PUT/DELETE) to operate on resources. Simple, intuitive, supported by nearly all web services.

English Example:Get user info: GET /users/123. Create new user: POST /users — typical REST API usage.

Share