Skip to main content
POST
/
v1
/
blocklist
/
items
Add blocklist entries by value
curl --request POST \
  --url https://openapi.enginy.ai/v1/blocklist/items \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "items": [
    {
      "type": "DOMAIN",
      "value": "competitor.com",
      "reason": "COMPETITOR"
    },
    {
      "type": "EMAIL",
      "value": "ada@analytical-engines.com",
      "reason": "NOT_INTERESTED",
      "periodDays": 90
    }
  ]
}
'
{
  "message": "<string>",
  "data": {
    "added": 123,
    "skipped": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.enginy.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Body

application/json
items
object[]
required

Items to add. Up to 500 per request.

Required array length: 1 - 500 elements

Response

Items added

status
enum<string>
required
Available options:
success
message
string
required
data
object
required