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

# Get knowledge network packageId

> Requires scopes: eval:read



## OpenAPI

````yaml /api-reference/openapi.json get /api/knowledge-network/packages/{packageId}
openapi: 3.1.0
info:
  title: EvalGate API
  version: 3.7.6
  description: EvalGate API. See docs/api-contract.md for stability commitments.
servers:
  - url: https://evalgate.com
    description: Production
  - url: http://localhost:3000
    description: Local
security: []
paths:
  /api/knowledge-network/packages/{packageId}:
    get:
      tags:
        - knowledge network
      summary: Get knowledge network packageId
      description: 'Requires scopes: eval:read'
      operationId: get_knowledge_network_packages_packageId
      parameters:
        - name: packageId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/GetApiKnowledgeNetworkPackagesPackageIdResponse200ApplicationJson
        '400':
          $ref: '#/components/responses/ValidationError'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '409':
          $ref: '#/components/responses/Conflict'
        '429':
          $ref: '#/components/responses/RateLimited'
        '500':
          $ref: '#/components/responses/InternalError'
      security:
        - bearerAuth:
            - eval:read
components:
  schemas:
    GetApiKnowledgeNetworkPackagesPackageIdResponse200ApplicationJson:
      type: object
      properties:
        package:
          type: object
          properties:
            status:
              type: string
            id:
              type: string
            name:
              type: string
            createdAt:
              type: string
              format: date-time
            updatedAt:
              type: string
              format: date-time
            organizationId:
              $ref: '#/components/schemas/OrganizationId'
            description:
              type: string
            createdBy:
              type: string
            stateVersion:
              type: number
            kind:
              oneOf:
                - type: string
                  enum:
                    - objective_pack
                - type: string
                  enum:
                    - evaluation_pack
                - type: string
                  enum:
                    - synthetic_dataset
                - type: string
                  enum:
                    - dataset_schema
                - type: string
                  enum:
                    - scorer_pack
                - type: string
                  enum:
                    - failure_taxonomy
                - type: string
                  enum:
                    - guardrail_pack
                - type: string
                  enum:
                    - repair_playbook
                - type: string
                  enum:
                    - release_policy
                - type: string
                  enum:
                    - organizational_learning_pack
            latestVersionId:
              oneOf:
                - type: 'null'
                - type: string
            publisherId:
              type: string
            packageId:
              type: string
            packageKey:
              type: string
          additionalProperties: false
          required:
            - status
            - id
            - name
            - createdAt
            - updatedAt
            - organizationId
            - description
            - createdBy
            - stateVersion
            - kind
            - latestVersionId
            - publisherId
            - packageId
            - packageKey
        versions:
          type: array
          items:
            type: object
            properties:
              status:
                type: string
              id:
                type: string
              createdAt:
                type: string
                format: date-time
              organizationId:
                $ref: '#/components/schemas/OrganizationId'
              createdBy:
                type: string
              version:
                type: string
              packageId:
                type: string
              manifest:
                type: object
                properties:
                  name:
                    type: string
                  description:
                    type: string
                  schemaVersion:
                    type: number
                    enum:
                      - 1
                  version:
                    type: string
                  kind:
                    oneOf:
                      - type: string
                        enum:
                          - objective_pack
                      - type: string
                        enum:
                          - evaluation_pack
                      - type: string
                        enum:
                          - synthetic_dataset
                      - type: string
                        enum:
                          - dataset_schema
                      - type: string
                        enum:
                          - scorer_pack
                      - type: string
                        enum:
                          - failure_taxonomy
                      - type: string
                        enum:
                          - guardrail_pack
                      - type: string
                        enum:
                          - repair_playbook
                      - type: string
                        enum:
                          - release_policy
                      - type: string
                        enum:
                          - organizational_learning_pack
                  classification:
                    oneOf:
                      - type: string
                        enum:
                          - public
                      - type: string
                        enum:
                          - restricted
                      - type: string
                        enum:
                          - private
                  signature:
                    type: object
                    properties:
                      value:
                        type: string
                      algorithm:
                        type: string
                        enum:
                          - Ed25519
                      keyId:
                        type: string
                    additionalProperties: false
                    required:
                      - value
                      - algorithm
                      - keyId
                  packageId:
                    type: string
                  packageKey:
                    type: string
                  publisher:
                    type: object
                    properties:
                      organizationId:
                        $ref: '#/components/schemas/OrganizationId'
                      displayName:
                        type: string
                      publisherId:
                        type: string
                      signerKeyId:
                        type: string
                    additionalProperties: false
                    required:
                      - organizationId
                      - displayName
                      - publisherId
                      - signerKeyId
                  license:
                    type: object
                    properties:
                      identifier:
                        type: string
                      commercialUseAllowed:
                        type: boolean
                      redistributionAllowed:
                        type: boolean
                    additionalProperties: false
                    required:
                      - identifier
                      - commercialUseAllowed
                      - redistributionAllowed
                  assets:
                    type: array
                    items:
                      type: object
                      properties:
                        version:
                          type: string
                        kind:
                          type: string
                        contentHash:
                          type: string
                        canonicalRef:
                          type: string
                      additionalProperties: false
                      required:
                        - version
                        - kind
                        - contentHash
                        - canonicalRef
                  dependencies:
                    type: array
                    items:
                      type: object
                      properties:
                        required:
                          type: boolean
                        packageKey:
                          type: string
                        versionRange:
                          type: string
                        expectedContentHash:
                          type: string
                      additionalProperties: false
                      required:
                        - required
                  compatibility:
                    type: object
                    properties:
                      evalgateCompatibilityVersion:
                        type: number
                      supportedDomains:
                        type: array
                        items:
                          type: string
                      requiredScopes:
                        type: array
                        items:
                          type: string
                    additionalProperties: false
                    required:
                      - evalgateCompatibilityVersion
                      - supportedDomains
                      - requiredScopes
                  evidenceSummary:
                    type: object
                    properties:
                      trustTier:
                        oneOf:
                          - type: string
                            enum:
                              - unverified
                          - type: string
                            enum:
                              - publisher_verified
                          - type: string
                            enum:
                              - reproduced
                          - type: string
                            enum:
                              - multi_org_reproduced
                          - type: string
                            enum:
                              - curated
                      sourceObservationCount:
                        type: number
                      successfulReproductionCount:
                        type: number
                      knownFailureCount:
                        type: number
                    additionalProperties: false
                    required:
                      - trustTier
                      - sourceObservationCount
                      - successfulReproductionCount
                      - knownFailureCount
                  privacy:
                    type: object
                    properties:
                      privacyManifestId:
                        type: string
                      containsProductionDerivedContent:
                        type: boolean
                      containsSyntheticContentOnly:
                        type: boolean
                      reversibleTokensPresent:
                        type: boolean
                        enum:
                          - false
                    additionalProperties: false
                    required:
                      - privacyManifestId
                      - containsProductionDerivedContent
                      - containsSyntheticContentOnly
                      - reversibleTokensPresent
                  bundleHash:
                    type: string
                additionalProperties: false
                required:
                  - name
                  - description
                  - schemaVersion
                  - version
                  - kind
                  - classification
                  - signature
                  - packageId
                  - packageKey
                  - publisher
                  - license
                  - assets
                  - dependencies
                  - compatibility
                  - evidenceSummary
                  - privacy
                  - bundleHash
              trustTier:
                type: string
              bundleHash:
                type: string
              validationErrors:
                type: array
                items:
                  type: string
            additionalProperties: false
            required:
              - status
              - id
              - createdAt
              - organizationId
              - createdBy
              - version
              - packageId
              - manifest
              - trustTier
              - bundleHash
              - validationErrors
      additionalProperties: false
      required:
        - package
        - versions
    OrganizationId:
      type: string
      format: uuid
    ApiError:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              enum:
                - UNAUTHORIZED
                - FORBIDDEN
                - NOT_FOUND
                - VALIDATION_ERROR
                - RATE_LIMITED
                - CONFLICT
                - INTERNAL_ERROR
                - SERVICE_UNAVAILABLE
                - QUOTA_EXCEEDED
                - NO_ORG_MEMBERSHIP
                - CROSS_ORG_REFERENCE
                - INCOMPLETE
                - MALFORMED
            message:
              type: string
            details: {}
            requestId:
              type: string
              format: uuid
          required:
            - code
            - message
      required:
        - error
  responses:
    ValidationError:
      description: Validation error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    Unauthorized:
      description: Unauthorized
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    Forbidden:
      description: Forbidden
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    Conflict:
      description: Conflict
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    RateLimited:
      description: Rate limit exceeded
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    InternalError:
      description: Internal server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key or Session Token

````