POST
/
asset
/
changelog
curl --request POST \
  --url https://app.chainpatrol.io/api/v2/asset/changelog \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '{
  "type": "URL",
  "content": "<string>",
  "fromStatus": "UNKNOWN",
  "toStatus": "UNKNOWN",
  "startDate": "<string>",
  "endDate": "<string>"
}'
{
  "changelog": [
    {
      "assetId": 123,
      "type": "URL",
      "content": "<string>",
      "fromStatus": "UNKNOWN",
      "toStatus": "UNKNOWN",
      "updatedAt": "<string>"
    }
  ]
}

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
type
enum<string>
Available options:
URL,
PAGE,
ADDRESS,
DISCORD,
LINKEDIN,
TWITTER,
FACEBOOK,
YOUTUBE,
REDDIT,
TELEGRAM,
GOOGLE_APP_STORE,
APPLE_APP_STORE,
AMAZON_APP_STORE,
MICROSOFT_APP_STORE,
TIKTOK,
INSTAGRAM,
THREADS,
MEDIUM,
CHROME_WEB_STORE,
MOZILLA_ADDONS,
OPERA_ADDONS,
EMAIL,
PATREON,
OPENSEA,
FARCASTER,
IPFS,
GOOGLE_FORM,
WHATSAPP,
DISCORD_USER,
QUORA,
GITHUB,
TEACHABLE
content
string
fromStatus
enum<string>
Available options:
UNKNOWN,
ALLOWED,
BLOCKED
toStatus
enum<string>
Available options:
UNKNOWN,
ALLOWED,
BLOCKED
startDate
string
endDate
string

Response

200
application/json
Successful response
changelog
object[]
required