In general, you need to make a module on yii2 that will work as RestFull. Here is part of the configuration
'urlManager'=>[ 'enablePrettyUrl' => true, 'enableStrictParsing' => true, 'showScriptName' => false, 'rules' => [ ['class' => 'yii\rest\UrlRule', 'controller' => ['v1/books','v1/authors']], ], ], But with this configuration, simple routing does not work all over the site.