zlm-v2-iab-classify-edge-enriched: Responses
curl --request POST \
--url https://api.zerogpu.ai/v1/responses \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"input": "Technology has quietly reshaped the rhythm of everyday life, weaving itself into routines so seamlessly that it often goes unnoticed. From the moment a smartphone alarm wakes someone in the morning to the final glance at a glowing screen before sleep, digital systems guide communication, navigation, work, and entertainment. This transformation did not happen overnight. It emerged through decades of incremental innovation, each new tool building upon the last, until the modern world became deeply interconnected.One of the most significant changes has been the speed at which information travels.",
"model": "zlm-v2-iab-classify-edge-enriched"
}
'import requests
url = "https://api.zerogpu.ai/v1/responses"
payload = {
"input": "Technology has quietly reshaped the rhythm of everyday life, weaving itself into routines so seamlessly that it often goes unnoticed. From the moment a smartphone alarm wakes someone in the morning to the final glance at a glowing screen before sleep, digital systems guide communication, navigation, work, and entertainment. This transformation did not happen overnight. It emerged through decades of incremental innovation, each new tool building upon the last, until the modern world became deeply interconnected.One of the most significant changes has been the speed at which information travels.",
"model": "zlm-v2-iab-classify-edge-enriched"
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
input: 'Technology has quietly reshaped the rhythm of everyday life, weaving itself into routines so seamlessly that it often goes unnoticed. From the moment a smartphone alarm wakes someone in the morning to the final glance at a glowing screen before sleep, digital systems guide communication, navigation, work, and entertainment. This transformation did not happen overnight. It emerged through decades of incremental innovation, each new tool building upon the last, until the modern world became deeply interconnected.One of the most significant changes has been the speed at which information travels.',
model: 'zlm-v2-iab-classify-edge-enriched'
})
};
fetch('https://api.zerogpu.ai/v1/responses', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));falsepackage main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.zerogpu.ai/v1/responses"
payload := strings.NewReader("{\n \"input\": \"Technology has quietly reshaped the rhythm of everyday life, weaving itself into routines so seamlessly that it often goes unnoticed. From the moment a smartphone alarm wakes someone in the morning to the final glance at a glowing screen before sleep, digital systems guide communication, navigation, work, and entertainment. This transformation did not happen overnight. It emerged through decades of incremental innovation, each new tool building upon the last, until the modern world became deeply interconnected.One of the most significant changes has been the speed at which information travels.\",\n \"model\": \"zlm-v2-iab-classify-edge-enriched\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}require 'uri'
require 'net/http'
url = URI("https://api.zerogpu.ai/v1/responses")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"input\": \"Technology has quietly reshaped the rhythm of everyday life, weaving itself into routines so seamlessly that it often goes unnoticed. From the moment a smartphone alarm wakes someone in the morning to the final glance at a glowing screen before sleep, digital systems guide communication, navigation, work, and entertainment. This transformation did not happen overnight. It emerged through decades of incremental innovation, each new tool building upon the last, until the modern world became deeply interconnected.One of the most significant changes has been the speed at which information travels.\",\n \"model\": \"zlm-v2-iab-classify-edge-enriched\"\n}"
response = http.request(request)
puts response.read_body{
"audience": [
{
"id": 687,
"parent_id": 206,
"name": "Technology & Computing",
"tier1_name": "Interest",
"tier2_name": "Technology & Computing",
"score": 0.7686
},
{
"id": 703,
"parent_id": 687,
"name": "Consumer Electronics",
"tier1_name": "Interest",
"tier2_name": "Technology & Computing",
"tier3_name": "Consumer Electronics",
"score": 0.7206
}
],
"content": {
"iab_1_0": [
{
"code": "IAB19-6",
"name": "Cell Phones",
"tier": 2,
"parent_code": "IAB19",
"score": 0.7597
},
{
"code": "IAB19",
"name": "Technology & Computing",
"tier": 1,
"parent_code": null,
"score": 0.7387
}
]
},
"topics": [
{
"name": "smartphones",
"score": 0.7597
},
{
"name": "wearable technology",
"score": 0.7387
},
{
"name": "technology & computing",
"score": 0.7109
}
],
"keywords": [
"technology",
"reshaped",
"everyday",
"routines",
"quietly",
"weaving",
"rhythm",
"itself",
"life",
"into"
],
"user_intent": {
"name": "mastering technology quietly reshaped rhythm everyday life",
"category": "informational",
"score": 0.5
}
}{}By model
zlm-v2-iab-classify-edge-enriched
Model details for zlm-v2-iab-classify-edge-enriched. Supports 50+ languages.
POST
/
responses
zlm-v2-iab-classify-edge-enriched: Responses
curl --request POST \
--url https://api.zerogpu.ai/v1/responses \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"input": "Technology has quietly reshaped the rhythm of everyday life, weaving itself into routines so seamlessly that it often goes unnoticed. From the moment a smartphone alarm wakes someone in the morning to the final glance at a glowing screen before sleep, digital systems guide communication, navigation, work, and entertainment. This transformation did not happen overnight. It emerged through decades of incremental innovation, each new tool building upon the last, until the modern world became deeply interconnected.One of the most significant changes has been the speed at which information travels.",
"model": "zlm-v2-iab-classify-edge-enriched"
}
'import requests
url = "https://api.zerogpu.ai/v1/responses"
payload = {
"input": "Technology has quietly reshaped the rhythm of everyday life, weaving itself into routines so seamlessly that it often goes unnoticed. From the moment a smartphone alarm wakes someone in the morning to the final glance at a glowing screen before sleep, digital systems guide communication, navigation, work, and entertainment. This transformation did not happen overnight. It emerged through decades of incremental innovation, each new tool building upon the last, until the modern world became deeply interconnected.One of the most significant changes has been the speed at which information travels.",
"model": "zlm-v2-iab-classify-edge-enriched"
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
input: 'Technology has quietly reshaped the rhythm of everyday life, weaving itself into routines so seamlessly that it often goes unnoticed. From the moment a smartphone alarm wakes someone in the morning to the final glance at a glowing screen before sleep, digital systems guide communication, navigation, work, and entertainment. This transformation did not happen overnight. It emerged through decades of incremental innovation, each new tool building upon the last, until the modern world became deeply interconnected.One of the most significant changes has been the speed at which information travels.',
model: 'zlm-v2-iab-classify-edge-enriched'
})
};
fetch('https://api.zerogpu.ai/v1/responses', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));falsepackage main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.zerogpu.ai/v1/responses"
payload := strings.NewReader("{\n \"input\": \"Technology has quietly reshaped the rhythm of everyday life, weaving itself into routines so seamlessly that it often goes unnoticed. From the moment a smartphone alarm wakes someone in the morning to the final glance at a glowing screen before sleep, digital systems guide communication, navigation, work, and entertainment. This transformation did not happen overnight. It emerged through decades of incremental innovation, each new tool building upon the last, until the modern world became deeply interconnected.One of the most significant changes has been the speed at which information travels.\",\n \"model\": \"zlm-v2-iab-classify-edge-enriched\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}require 'uri'
require 'net/http'
url = URI("https://api.zerogpu.ai/v1/responses")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"input\": \"Technology has quietly reshaped the rhythm of everyday life, weaving itself into routines so seamlessly that it often goes unnoticed. From the moment a smartphone alarm wakes someone in the morning to the final glance at a glowing screen before sleep, digital systems guide communication, navigation, work, and entertainment. This transformation did not happen overnight. It emerged through decades of incremental innovation, each new tool building upon the last, until the modern world became deeply interconnected.One of the most significant changes has been the speed at which information travels.\",\n \"model\": \"zlm-v2-iab-classify-edge-enriched\"\n}"
response = http.request(request)
puts response.read_body{
"audience": [
{
"id": 687,
"parent_id": 206,
"name": "Technology & Computing",
"tier1_name": "Interest",
"tier2_name": "Technology & Computing",
"score": 0.7686
},
{
"id": 703,
"parent_id": 687,
"name": "Consumer Electronics",
"tier1_name": "Interest",
"tier2_name": "Technology & Computing",
"tier3_name": "Consumer Electronics",
"score": 0.7206
}
],
"content": {
"iab_1_0": [
{
"code": "IAB19-6",
"name": "Cell Phones",
"tier": 2,
"parent_code": "IAB19",
"score": 0.7597
},
{
"code": "IAB19",
"name": "Technology & Computing",
"tier": 1,
"parent_code": null,
"score": 0.7387
}
]
},
"topics": [
{
"name": "smartphones",
"score": 0.7597
},
{
"name": "wearable technology",
"score": 0.7387
},
{
"name": "technology & computing",
"score": 0.7109
}
],
"keywords": [
"technology",
"reshaped",
"everyday",
"routines",
"quietly",
"weaving",
"rhythm",
"itself",
"life",
"into"
],
"user_intent": {
"name": "mastering technology quietly reshaped rhythm everyday life",
"category": "informational",
"score": 0.5
}
}{}The
instructions field is not needed for this model. It maps your input
directly to the IAB Content Taxonomy, so you only need to send inputThe enriched variant of ZeroGPU’s IAB classifier turns a single inference call into a full content-intelligence profile not just a label, but everything a contextual pipeline needs to act on. Each call returns IAB categories across both the 1.0 and 2.2 taxonomies (down to tier-3), audience and interest segments, topics, keywords, and user-intent classification — all with confidence scores with edge-native, sub-millisecond speeds. With support for 50+ languages, it delivers the same full profile on multilingual content without a translation step. Built for contextual ad targeting, brand-safety scoring, publisher content categorization, and signal pipelines that need full metadata on every request.References: Model docs • Terms • Privacy
Authorizations
Headers
Optional project identifier. Scopes the request to a specific project when provided.
Body
application/json
Model identifier (fixed for this playground). Use request examples to change use cases.
Allowed value:
"zlm-v2-iab-classify-edge-enriched"Example:
"zlm-v2-iab-classify-edge-enriched"
Multi-line text or document content to send to the model.
Required string length:
1 - 131072Response
Success
The response is of type object.
⌘I

