A complete REST API in server

We need a complete REST API in server, for PC and smartphone developing

For example:

function rest_listFriend_get($username) {
    $user = get_user_by_username($username);
    if (!$user) {
        throw new InvalidParameterException('Bad username');
    }
   
    $result = array();
    foreach ($user->getFriends() as $friend) {
        array_push($result,$friend->username);
    }
    return $result;

}

 

But I couldn't find any library for this. So I wonder, is there any rest API existed ?

Please tell me if you know, thank you.