> ## Documentation Index
> Fetch the complete documentation index at: https://humanity-eaeda8f6.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Presets · Single preset

<Callout>
  **SDK equivalent**

  ```ts theme={null}
  const result = await sdk.verifyPreset('is_human', accessToken);
  ```
</Callout>

Fetch the current verdict for an individual preset (for example `is_human` or `humanity_user`). Useful when you need to quickly re-check one capability without running a full batch verification job.

Combine with [`POST /presets/batch`](./presets-batch) when you need to evaluate multiple presets atomically.


## OpenAPI

````yaml api-reference/openapi.json get /presets/{preset_name}
openapi: 3.1.0
info:
  version: 0.1.0
  title: hp-public-dev-api-server
  description: NestJS CQRS + TDD base for Humanity Public Dev API
servers:
  - url: https://api.sandbox.humanity.org/v2
    description: Sandbox environment for development and testing
  - url: https://api.humanity.org/v2
    description: Production environment
security: []
tags: []
paths:
  /presets/{preset_name}:
    get:
      tags: []
      parameters:
        - name: preset_name
          in: path
          schema:
            type: string
          required: true
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PresetResult'
components:
  schemas:
    PresetResult:
      type: object
      properties:
        preset:
          oneOf:
            - const: humanity_uuid
            - const: humanity_score
            - const: is_human
            - const: country_of_residence
            - const: age
            - const: address_postal_code
            - const: legal_name
            - const: residency_region
            - const: age_over_18
            - const: nationality
            - const: address_full
            - const: date_of_birth
            - const: email
            - const: phone
            - const: age_over_21
            - const: social_accounts
            - const: wallet_address
            - const: primary_wallet_address
            - const: kyc_passed
            - const: kyc_last_updated_at
            - const: document_number
            - const: document_country
            - const: document_expiry_date
            - const: net_worth_above_10k
            - const: net_worth_above_100k
            - const: net_worth_total
            - const: bank_balance_total
            - const: loan_balance_total
            - const: google_connected
            - const: linkedin_connected
            - const: facebook_connected
            - const: twitter_connected
            - const: discord_connected
            - const: github_connected
            - const: telegram_connected
            - const: palm_verified
            - const: humanity_user
            - const: proof_of_assets
            - const: proof_of_investments
            - const: proof_of_mortgage
            - const: proof_of_residency
            - const: proof_of_retirement
        value: {}
        status:
          oneOf:
            - const: valid
            - const: expired
            - const: pending
            - const: unavailable
        expires_at:
          type: string
        verified_at:
          type: string
        evidence:
          $ref: '#/components/schemas/Recordstringunknown.o1'
      required:
        - preset
        - value
        - status
        - expires_at
    Recordstringunknown.o1:
      type: object
      properties: {}
      required: []
      description: Construct a type with a set of properties K of type T
      additionalProperties: {}

````