1)Install plugin WordPress REST API (Version 2) and activate
API Calls
Posts
1)Get site posts
http://localhost/websiteName/wp-json/wp/v2/posts
2)Get all posts with the search term “xxxx”?
http://localhost/websiteName/wp-json/wp/v2/posts?search=xxxx
3)Delete a Page
http://localhost/websiteName/wp-json/wp/v2/posts/9
Pages
1)Get site pages
http://localhost/websiteName/wp-json/wp/v2/pages
2)Retrieve a Page
http://localhost/websiteName/wp-json/wp/v2/pages/9
3)Delete a Page
http://localhost/websiteName/wp-json/wp/v2/pages/9
Media
1)Get all media
http://localhost/websiteName/wp-json/wp/v2/media
2)Retrieve a media
http://localhost/websiteName/wp-json/wp/v2/media/1
3)Delete a media
http://localhost/websiteName/wp-json/wp/v2/media/1
User
1)Get all users
http://localhost/websiteName/wp-json/wp/v2/users
3)Get user
http://localhost/websiteName/wp-json/wp/v2/users/1
3)Delete a user
http://localhost/websiteName/wp-json/wp/v2/users/1
Comments
1)Get site Comments
http://localhost/websiteName/wp-json/wp/v2/comments
2)Get comment
http://localhost/websiteName/wp-json/wp/v2/comments/1
3)Delete a comment
http://localhost/websiteName/wp-json/wp/v2/comments/1
Categorys
1)Get site Categorys
http://localhost/websiteName/wp-json/wp/v2/categories
2)Get category
http://localhost/websiteName/wp-json/wp/v2/categories/1
3)Delete a category
http://localhost/websiteName/wp-json/wp/v2/categories/1