Mempool Node API
  • Overview
    • Get Your API Credentials
  • Mempool Tools Suite
    • Mempool Configuration API
    • Connect via Webhook
    • Connect via Web Socket
    • Rate Limits
  • Gas Prediction Tools Suite
    • Gas Estimator Platform API
    • Rate Limits
  • Discord
  • Github
Powered by GitBook
On this page
  1. Mempool Tools Suite

Mempool Configuration API

Retrieve and update your Mempool Configuration, seamlessly with our API

PreviousMempool Tools SuiteNextConnect via Webhook

Last updated 1 year ago

API

To interact with your Mempool Node Dashboard Configuration, you need to use the following base API:

You must utilise our following endpoints:

Get All Watched Addresses

Required Parameters:

Get A Specific Watched Address

Required Parameters:

Set A Specific Watched Address

Required Parameters:

body - This is where you set the address you wish to watch in your current API Configuration

Add A New Watched Address

Required Parameters:

body - This is where you set the address you wish to watch in your current API Configuration

Remove A Watched Address

Required Parameters:

apiKey - This is the API Key for your current API Configuration, you can find this on your

apiKey - This is the API Key for your current API Configuration, you can find this on your

addressIndex - This is the index which is provided via the , the index maps 1:1 with the response from

apiKey - This is the API Key for your current API Configuration, you can find this on your

addressIndex - This is the index which is provided via the , the index maps 1:1 with the response from

apiKey - This is the API Key for your current API Configuration, you can find this on your

apiKey - This is the API Key for your current API Configuration, you can find this on your

addressIndex - This is the index which is provided via the , the index maps 1:1 with the response from

Mempool Node Dashboard
Mempool Node Dashboard
Mempool Node Dashboard
Mempool Node Dashboard
Mempool Node Dashboard
watchedAddress API
watchedAddress
es
watchedAddress API
watchedAddress
es
watchedAddress API
watchedAddress
es
https://api.mempoolnode.com/

Gets all configured watched addresses.

get

Each of the returned addresses are at a 0-based index which corresponds to the {addressIndex} parameter in the other SDK calls.

Query parameters
apiKeystringRequired
Responses
200
Success
get
GET /sdk/watched-addresses?apiKey=text HTTP/1.1
Host: 
Accept: */*
200

Success

[
  {
    "address": "text",
    "isDecoded": true,
    "advancedFilters": [
      {
        "address": "text",
        "tokenAmount": "text",
        "onlyCreationEvents": true
      }
    ],
    "advancedFiltersStatus": true,
    "createdOn": "2025-05-17T08:18:36.698Z"
  }
]

Gets the watched address at a specific index.

get

You can find the {addressIndex} to pass in by making a GET request to the /watched-addresses route.

Path parameters
addressIndexinteger · int32Required
Query parameters
apiKeystringRequired
Responses
200
Success
get
GET /sdk/watched-address/{addressIndex}?apiKey=text HTTP/1.1
Host: 
Accept: */*
200

Success

{
  "address": "text",
  "isDecoded": true,
  "advancedFilters": [
    {
      "address": "text",
      "tokenAmount": "text",
      "onlyCreationEvents": true
    }
  ],
  "advancedFiltersStatus": true,
  "createdOn": "2025-05-17T08:18:36.698Z"
}

Deletes the watched addresses at a specific index.

delete

You can find the {addressIndex} to pass in by making a GET request to the /watched-addresses route.

Path parameters
addressIndexinteger · int32Required
Query parameters
apiKeystringRequired
Responses
200
Success
delete
DELETE /sdk/watched-address/{addressIndex}?apiKey=text HTTP/1.1
Host: 
Accept: */*
200

Success

No content

  • API
  • Get All Watched Addresses
  • GETGets all configured watched addresses.
  • Get A Specific Watched Address
  • GETGets the watched address at a specific index.
  • Set A Specific Watched Address
  • POSTUpdates the watched addresses at a specific index.
  • Add A New Watched Address
  • PUTCreates a new watched addresses.
  • Remove A Watched Address
  • DELETEDeletes the watched addresses at a specific index.

Updates the watched addresses at a specific index.

post

You can find the {addressIndex} to pass in by making a GET request to the /watched-addresses route.

Path parameters
addressIndexinteger · int32Required
Query parameters
apiKeystringRequired
Body
stringOptional
Responses
200
Success
post
POST /sdk/watched-address/{addressIndex}?apiKey=text HTTP/1.1
Host: 
Content-Type: application/json
Accept: */*
Content-Length: 6

"text"
200

Success

No content

Creates a new watched addresses.

put

This will create a new watched address under your API key's config, at a new index.

Query parameters
apiKeystringRequired
Body
stringOptional
Responses
200
Success
put
PUT /sdk/watched-address?apiKey=text HTTP/1.1
Host: 
Content-Type: application/json
Accept: */*
Content-Length: 6

"text"
200

Success

No content