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

# Get Generation



## OpenAPI

````yaml /openapi.json get /v1/management/generation
openapi: 3.1.0
info:
  title: AGIPower API
  version: 1.0.0
  description: >-
    Interactive API reference for AGIPower-compatible OpenAI, Anthropic, Google
    Vertex AI, and management endpoints.
servers:
  - url: https://api.agipower.ai
security:
  - bearerAuth: []
paths:
  /v1/management/generation:
    get:
      tags:
        - Platform API
      summary: Get Generation
      operationId: getGeneration
      parameters:
        - name: id
          in: query
          required: true
          schema:
            type: string
            example: gen_01abc123def456
          description: Generation ID
      responses:
        '200':
          description: Generation detail response
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API key

````