Public
Documentation Settings

WpApp JSON Api

WP JSON API for WordPress by WooSignal

The missing WordPress plugin to allow you to connect with the WordPress API.

Our JSON API for WordPress allows you to register new users, login as a user, manage WordPress/WooCommerce data plus more!

Download the WordPress plugin from https://woosignal.com/plugins/wordpress/wpapp-json-api

See full documentation online https://woosignal.com/docs/wordpress/wpapp-json-api

After successfully a successful register/login, copy the user token and update the "UserToken" variable.

v3

auth

GETget_nonce

https://yoursite.com/wp-json/wpapp/auth/v3/nonce
Example Request
curl
curl --location 'https://yoursite.com/wp-json/wpapp/auth/v3/nonce'
200 OK
Example Response
json
{
  "data": {
    "nonce": "30c191e94d",
    "root": "https://yoursite.com/wp-json/",
    "expiry": 1670533412
  },
  "message": "",
  "status": 200
}
Date

Wed, 07 Dec 2022 21:03:25 GMT

Server

Apache

X-Robots-Tag

noindex

Link

<https://baelyf.com/wp-json/>; rel="https://api.w.org/"

X-Content-Type-Options

nosniff

Access-Control-Expose-Headers

X-WP-Total, X-WP-TotalPages, Link

Access-Control-Allow-Headers

Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type

Allow

GET

Vary

Origin

Content-Length

118

Keep-Alive

timeout=5, max=100

Connection

Keep-Alive

Content-Type

application/json; charset=UTF-8

POSTverify_nonce

https://yoursite.com/wp-json/wpapp/auth/v3/verify
HEADERS
Content-Type

application/json

Bodyraw (json)
json
{
	"nonce":"002bac1c4e"
}
Example Request
curl
curl --location 'https://yoursite.com/wp-json/wpapp/auth/v3/verify' \
--header 'Content-Type: application/json' \
--data '{
	"nonce":"3c8c042b2e"
}'
200 OK
Example Response
json
{
  "data": {
    "is_valid": true
  },
  "message": "",
  "status": 200
}
Date

Thu, 08 Dec 2022 15:49:11 GMT

Server

Apache

X-Robots-Tag

noindex

Link

<https://baelyf.com/wp-json/>; rel="https://api.w.org/"

X-Content-Type-Options

nosniff

Access-Control-Expose-Headers

X-WP-Total, X-WP-TotalPages, Link

Access-Control-Allow-Headers

Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type

Allow

POST

Content-Length

52

Keep-Alive

timeout=5, max=100

Connection

Keep-Alive

Content-Type

application/json; charset=UTF-8

api