REST was defined in 2000 by Roy Fielding and is considerably simpler. It’s not a standard but a set of recommendations and constraints for RESTful web services (or architectural style).
It is not a RESTfull, but RESTful, that means "REST-like"
https://domain.com/user/1/articles?page=3&published=true
domain (+ port)
query string
path
{
  "name": "John Doe",
  "age": 33,
  "articlesNumber": 120,
  "active": true,
  "city": null
}