Skip to main content
GET
https://app.flashmapy.com
/
api
/
v1
/
blacklist
curl --location --request GET 'https://app.flashmapy.com/api/v1/blacklist' \
--header 'Content-Type: application/json' \
--header 'x-api-key: Token <token>' \
[
    {
        "name": "list-1",
        "nb": 5
    },
    {
        "name": "my-list-2",
        "count": 14
    }
]
Our API offers a functionality that enables you to blacklist items based on email, domain, place_id, or cid. This ensures that these items won’t be shown in subsequent requests, and they won’t consume your credits. This feature is especially valuable for preventing redundant data scraping and conserving your credit usage.
x-api-key
string
required
This parameter specifies the private key you’ll need for Flashmapy access.

Response

An array of objects containing the name of the blacklist and the number of items in it.
name
string
The name of the blacklist.
count
number
The number of items in the blacklist.
curl --location --request GET 'https://app.flashmapy.com/api/v1/blacklist' \
--header 'Content-Type: application/json' \
--header 'x-api-key: Token <token>' \
[
    {
        "name": "list-1",
        "nb": 5
    },
    {
        "name": "my-list-2",
        "count": 14
    }
]