I see in many different REST API docs the use of the me word like Imgur one. It enable this kind of route that looks very elegant:
GET  /users/{id}  -> Get public data from user {id}
GET  /users/me    -> Get my data if I'm connected
But is it actually 'REST valid'? Does it respect the REST convention?
 
     
    