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

# Get a real-person verification result

> Retrieve the real-person group ID after a successful H5 callback, before the single-use token expires.



## OpenAPI

````yaml openapi/byteplus-assets.yaml POST /assets/real-human/verification-results
openapi: 3.1.0
info:
  title: BytePlus Assets API
  version: 1.0.0
  description: >-
    GENGEN reference for BytePlus asset groups, reusable assets, the public
    asset library, and real-person verification.
servers:
  - url: https://gengen.farm/api/gengen/v1
    description: Production
security:
  - bearerAuth: []
paths:
  /assets/real-human/verification-results:
    post:
      summary: Get a real-person verification result
      description: >-
        Retrieve the real-person asset group ID after a successful H5
        verification. Tokens expire after 120 seconds and support one attempt.
      operationId: getRealHumanVerificationResult
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VerificationResultRequest'
            example:
              BytedToken: 202603311449168C23BA26**************
      responses:
        '200':
          description: The verified real-person asset group ID.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VerificationResultResponse'
              example:
                GroupId: group-20260331145705-abc
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '409':
          $ref: '#/components/responses/Conflict'
        '502':
          $ref: '#/components/responses/ProviderError'
        default:
          $ref: '#/components/responses/ProviderError'
      x-codeSamples:
        - lang: bash
          label: Get result
          source: |
            curl --request POST \
              --url https://gengen.farm/api/gengen/v1/assets/real-human/verification-results \
              --header 'Authorization: Bearer gengen_live_xxxxxxxxxxxxxxxx' \
              --header 'Content-Type: application/json' \
              --data '{
                "BytedToken": "202603311449168C23BA26**************"
              }'
components:
  schemas:
    VerificationResultRequest:
      type: object
      required:
        - BytedToken
      properties:
        BytedToken:
          type: string
          minLength: 1
          description: Short-lived token returned by the verification-session operation.
      additionalProperties: false
    VerificationResultResponse:
      type: object
      required:
        - GroupId
      properties:
        GroupId:
          type: string
          description: Provider asset group ID for the verified real-person portrait group.
      additionalProperties: false
    Error:
      type: object
      properties:
        error_code:
          type: string
        error:
          type: string
        error_params:
          type: object
          additionalProperties: true
      additionalProperties: true
  responses:
    BadRequest:
      description: The request body or parameters are invalid.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Unauthorized:
      description: The bearer token is missing or invalid.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Forbidden:
      description: The API key is not permitted to perform this operation.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    NotFound:
      description: The requested asset, group, or verification session was not found.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Conflict:
      description: The resource state conflicts with the requested operation.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    ProviderError:
      description: GENGEN or the asset provider could not complete the request.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: GENGEN API key
      description: A workspace API key beginning with gengen_live_.

````