> ## Documentation Index
> Fetch the complete documentation index at: https://docs.zerogpu.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# zlm-v2-iab-classify-edge-enriched

> Model details for zlm-v2-iab-classify-edge-enriched. Supports 50+ languages.

<Note>
  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 input
</Note>

> The 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](https://docs.zerogpu.ai/) • [Terms](https://zerogpu.ai/terms) • [Privacy](https://zerogpu.ai/privacy-policy)


## OpenAPI

````yaml api-reference/openapi/playgrounds/zlm-v2-iab-classify-edge-enriched.openapi.json POST /responses
openapi: 3.1.0
info:
  title: zlm-v2-iab-classify-edge-enriched playground
  version: '1.0'
  description: >-
    Interactive playground for **zlm-v2-iab-classify-edge-enriched**.

    Model is always `zlm-v2-iab-classify-edge-enriched` on this page (shown in
    the form, not editable).

    Use the **request example** selector to switch use cases (JSON, NER, PII,
    etc.).

    Authentication: `x-api-key` (required) and `x-project-id` (optional).
servers:
  - url: https://api.zerogpu.ai/v1
    description: Production
security:
  - ApiKey: []
paths:
  /responses:
    post:
      tags:
        - zlm-v2-iab-classify-edge-enriched
      summary: 'zlm-v2-iab-classify-edge-enriched: Responses'
      operationId: createResponse_zlm-v2-iab-classify-edge-enriched
      parameters:
        - name: x-project-id
          in: header
          required: false
          schema:
            type: string
          description: >-
            Optional project identifier. Scopes the request to a specific
            project when provided.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              allOf:
                - $ref: '#/components/schemas/CreateResponseRequest'
                - type: object
                  properties:
                    model:
                      type: string
                      const: zlm-v2-iab-classify-edge-enriched
                      default: zlm-v2-iab-classify-edge-enriched
                      example: zlm-v2-iab-classify-edge-enriched
                      description: >-
                        Model identifier (fixed for this playground). Use
                        request examples to change use cases.
            examples:
              default:
                summary: Default
                value:
                  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
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Response'
              examples:
                default:
                  summary: Default
                  value:
                    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
        '400':
          description: Bad request
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '420':
          description: Insufficient quota
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error
components:
  schemas:
    CreateResponseRequest:
      type: object
      required:
        - model
        - input
      properties:
        model:
          type: string
          const: zlm-v2-iab-classify-edge-enriched
          default: zlm-v2-iab-classify-edge-enriched
          example: zlm-v2-iab-classify-edge-enriched
          description: >-
            Model identifier (fixed for this playground). Use request examples
            to change use cases.
        input:
          type: string
          minLength: 1
          format: textarea
          maxLength: 131072
          description: Multi-line text or document content to send to the model.
    Response:
      type: object
      additionalProperties: true
    ErrorResponse:
      type: object
      additionalProperties: true
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: x-api-key

````