industry_name — partial, case-insensitive match against the industry display name (e.g. "health" matches "Healthcare", "Health & Wellness").industry_group — filter by the parent category/group (e.g. "Construction", "Technology").industry_id — exact lookup by numeric industry ID.industry_id, industry_name, and industry_group (the parent category).curl --location --request GET 'https://platform-api.convirza.com/v3/industry?industry_name&industry_group&industry_id' \
--header 'Authorization: Bearer <token>'{
"code": 200,
"message": "Success",
"data": {
"industries": [
{
"industry_id": 512,
"industry_group": "Construction",
"industry_name": "Environmental Services"
},
{
"industry_id": 513,
"industry_group": "Healthcare",
"industry_name": "General Practice"
}
]
},
"request_id": "550e8400-e29b-41d4-a716-446655440000",
"timestamp": "2026-01-20T12:34:56.789Z"
}