Gutenberg Block
Our Gutenberg block is a simple method for adding endpoints into pages, posts or wherever you can add a block.…
Endpoint Page
After adding an API to the Setup Page, you will see that the API now gets its own tab –…
Setup Page
The Setup page is where you add each of your APIs. Click on WPGetAPI in the sidebar of your WordPress…
Parameters – Body POST
What are POST fields POST fields (sometimes called body fields), are key/value pairs of data that are sent within the…
Parameters – Headers
What are headers Headers (or more specifically HTTP headers), are used to give information about the request and basically to…
Parameters – Query String
What is the query string The query string is the part of a URL immediately after the question mark: https://someapiurl.com/endpoint/?api_key=1234567&user_id=456…
Shortcode
Using the shortcode to display your API data is very easy and there are just 2 required attributes: api_id and…
Template Tag
Using the Template Tag requires PHP knowledge. If you aren’t familiar with PHP, it’s recommended to use the Shortcode. The…