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

# Post apivizrowslookup

> POST /viz/rows/lookup — resolve selected point IDs to row dicts.

Accepts ``{"datasetId": ..., "versionId": ..., "ids": [int, ...]}``.
Returns ``{"rows": [{"id": <int>, <visible-field>: <value>, ...}]}``.
Selection size is capped at ``MAX_LOOKUP_IDS``; out-of-range IDs
are silently dropped (the client gets fewer rows than requested).



## OpenAPI

````yaml /api-reference/openapi.yaml post /api/viz/rows/lookup/
openapi: 3.0.3
info:
  title: Console API
  version: 1.0.0
  description: Central control plane API for the Dataerai platform.
servers:
  - url: https://{server}
    description: Your Dataerai deployment (the API is served under /api)
    variables:
      server:
        default: your-deployment.dataerai.com
        description: Host of your Dataerai deployment
security: []
paths:
  /api/viz/rows/lookup/:
    post:
      tags:
        - api
      description: |-
        POST /viz/rows/lookup — resolve selected point IDs to row dicts.

        Accepts ``{"datasetId": ..., "versionId": ..., "ids": [int, ...]}``.
        Returns ``{"rows": [{"id": <int>, <visible-field>: <value>, ...}]}``.
        Selection size is capped at ``MAX_LOOKUP_IDS``; out-of-range IDs
        are silently dropped (the client gets fewer rows than requested).
      operationId: api_viz_rows_lookup_create
      requestBody:
        content:
          application/json:
            schema:
              type: object
              additionalProperties: {}
          application/x-www-form-urlencoded:
            schema:
              type: object
              additionalProperties: {}
          multipart/form-data:
            schema:
              type: object
              additionalProperties: {}
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                additionalProperties: {}
          description: ''
      security:
        - cookieAuthCsrfExempt: []
components: {}

````