data.attributes.tags from a set of companies. Every tag is removed from every selected company. The companies are supplied either as an explicit items array (up to 100 items per request), or as an advanced_search selection that is resolved into companies (up to 100,000) when the job runs. To add tags, use POST /v1/tags/batch-add-tags-jobs — adding and removing are separate jobs.202 Accepted with a job handle. Poll GET /v1/tags/batch-remove-tags-jobs/{job_id} to observe progress and the outcome summary.companies:write OAuth2 scope.X-Api-Key: ********************{
"data": {
"type": "batch_remove_tags_job",
"attributes": {
"tags": [
{
"type": "tag",
"id": "3f7a1b9c0e5d2648"
}
],
"items": [
{
"type": "company",
"id": "159001425"
},
{
"type": "company",
"id": "159001426"
}
]
}
}
}curl --location 'https://api.leadfeeder.com/v1/tags/batch-remove-tags-jobs?account_id=123456' \
--header 'X-Api-Key: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"data": {
"type": "batch_remove_tags_job",
"attributes": {
"tags": [
{
"type": "tag",
"id": "3f7a1b9c0e5d2648"
}
],
"items": [
{
"type": "company",
"id": "159001425"
},
{
"type": "company",
"id": "159001426"
}
]
}
}
}'{
"data": {
"type": "batch_remove_tags_job",
"id": "job_550e8400-e29b-41d4-a716-446655440000",
"attributes": {
"status": "running",
"configuration": {
"tags": [
{
"type": "tag",
"id": "3f7a1b9c0e5d2648"
}
],
"items": [
{
"type": "company",
"id": "159001425"
},
{
"type": "company",
"id": "159001426"
}
]
},
"created_at": "2026-05-13T12:00:00Z",
"completed_at": null
}
},
"meta": {
"request_id": "cf054205-dd8c-4473-8689-07c30fe0789f"
}
}