Skip to main content
POST
/
asset
/
search
Search asset
curl --request POST \
  --url https://app.chainpatrol.io/api/v2/asset/search \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "content": "<string>",
  "assetId": 123
}
'
{
  "asset": {
    "id": 123,
    "content": "<string>",
    "type": "URL",
    "status": "UNKNOWN",
    "createdAt": "<string>",
    "updatedAt": "<string>"
  },
  "reports": [
    {
      "id": 123,
      "title": "<string>",
      "status": "TODO",
      "createdAt": "<string>"
    }
  ],
  "takedown": {
    "id": 123,
    "status": "TODO",
    "createdAt": "<string>",
    "updatedAt": "<string>"
  }
}

Quick Start

Authentication

Include your API key in the X-API-KEY header:
X-API-KEY: <api-key>

Authorizations

X-API-KEY
string
header
required

Your API key. This is required by most endpoints to access our API programatically. Reach out to us at [email protected] to get an API key for your use.

Body

application/json
content
string
assetId
integer

Response

Successful response

asset
object
required
reports
object[]
required
takedown
object
required