---
title: "Per-field configuration (formats, units, allowed operators)."
url: "https://developer.argaam.com/apis/search-discovery-layer-api-sandbox-v1/versions/7b9c43fb-96d0-4164-9da6-4249bbd8ed0b/operations/getScreenerFieldsConfig"
---

> Full API specification: https://developer.argaam.com/apis/search-discovery-layer-api-sandbox-v1/versions/7b9c43fb-96d0-4164-9da6-4249bbd8ed0b.md

# Per-field configuration (formats, units, allowed operators).

`GET` `/api/v1.1/screener/fields/config`

Operation ID: `getScreenerFieldsConfig`

Lighter-weight alternative to `/structure`: returns just the field-level metadata without page/section grouping. Useful when building a custom UI or generating screener queries programmatically. ### Example ``` GET /api/v1.1/screener/fields/config ```

## Responses

- `200` - Success

## OpenAPI definition

````yaml
openapi: 3.0.1
info:
  title: Search & Discovery Layer API
  version: v1.1
servers:
  - url: https://api-sandbox.argaam.com
    description: Argaam API Gateway (Sandbox)
paths:
  /api/v1.1/screener/fields/config:
    get:
      tags:
        - Screener
      responses:
        "200":
          description: Success
      summary: Per-field configuration (formats, units, allowed operators).
      description: "Lighter-weight alternative to `/structure`: returns just\r

        the field-level metadata without page/section grouping.\r

        Useful when building a custom UI or generating screener\r

        queries programmatically.\r

        \            \r

        ### Example\r

        ```\r

        GET /api/v1.1/screener/fields/config\r

        ```"
      operationId: getScreenerFieldsConfig
      parameters: []
security:
  - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: apikey
````
