curl --request POST \
--url https://app.chainpatrol.io/api/v2/asset/submit \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '
{
"assets": [
"<string>"
],
"organizationSlug": "<string>"
}
'{
"submittedAssets": [
{
"asset": "<string>",
"assetId": 123,
"scanId": 123
}
]
}Submit a list of assets such as domains, social profiles, or blockchain addresses. Automation will classify and assign them to appropriate organization(s).
curl --request POST \
--url https://app.chainpatrol.io/api/v2/asset/submit \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '
{
"assets": [
"<string>"
],
"organizationSlug": "<string>"
}
'{
"submittedAssets": [
{
"asset": "<string>",
"assetId": 123,
"scanId": 123
}
]
}X-API-KEY header:
X-API-KEY: <api-key>
Your API key. This is required by most endpoints to access our API programatically. Reach out to us at support@chainpatrol.io to get an API key for your use.
Successful response
Show child attributes
Was this page helpful?