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

# Get card details

> Retrieve detailed information about a specific card



## OpenAPI

````yaml https://api.vistaly.com/v1/swagger.json get /beta/cards/{cardId}
openapi: 3.1.0
info:
  contact:
    email: support@vistaly.com
    name: Vistaly Support Team
  description: >-
    Vistaly's public API for interacting with our platform, enabling developers
    to integrate with various features such as feedback, cards, and system
    health.
  termsOfService: https://vistaly.com/terms-of-service
  title: Vistaly API
  version: '2025-06-21'
servers:
  - description: Production server
    url: https://api.vistaly.com
security: []
tags:
  - description: System-related endpoints to interact with the overall service.
    name: system
  - description: >-
      Endpoints related to card management, including the creation and
      modification of card metrics and related data.
    externalDocs:
      description: Learn more about Cards
      url: https://docs.vistaly.com/en/card-types/overview
    name: cards
  - description: >-
      Endpoints for handling insights data, such as user feedback and interview
      records.
    externalDocs:
      description: Learn more about Insights
      url: https://docs.vistaly.com/en/insights/overview
    name: insights
paths:
  /beta/cards/{cardId}:
    get:
      tags:
        - cards
      summary: Get card details
      description: Retrieve detailed information about a specific card
      parameters:
        - description: The unique identifier for the card
          in: path
          name: cardId
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetCardResponse'
          description: Card details retrieved successfully
        '400':
          description: Bad request
          content:
            application/json:
              example:
                message: Bad request
              schema:
                $ref: '#/components/schemas/MessageResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              example:
                message: Unauthorized
              schema:
                $ref: '#/components/schemas/MessageResponse'
        '403':
          description: Forbidden
          content:
            application/json:
              example:
                message: Forbidden
              schema:
                $ref: '#/components/schemas/MessageResponse'
        '500':
          description: Internal Server Error
          content:
            application/json:
              example:
                message: Internal server error
              schema:
                $ref: '#/components/schemas/MessageResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    GetCardResponse:
      additionalProperties: false
      properties:
        archived:
          description: Whether the card is archived
          type: boolean
        archivedAt:
          description: When the card was archived
          format: date-time
          type: string
        archivedBy:
          description: User ID who archived the card
          type: string
        assignees:
          description: List of user IDs assigned to this card
          items:
            type: string
          type: array
        cardDetails:
          description: The detailed description of the card
          example: >-
            We need to streamline the onboarding process to reduce drop-off
            rates
          type: string
        cardId:
          description: The unique identifier of the card
          example: abc123def456
          type: string
        cardStatus:
          description: The current status of the card
          type: string
        cardTitle:
          description: The title of the card
          example: Improve customer onboarding
          type: string
        cardType:
          $ref: '#/components/schemas/CardType'
          description: The type of the card
        children:
          description: List of child nodes with their card and context IDs
          items:
            type: object
            properties:
              cardId:
                type: string
                description: The unique identifier of the child card
              contextId:
                type: string
                description: The context identifier for the child card
            required:
              - cardId
              - contextId
            additionalProperties: false
          type: array
        commentsCount:
          description: Number of comments on this card
          type: integer
        commentsLastCreatedAt:
          description: Timestamp of the last comment
          format: date-time
          type: string
        createdAt:
          description: When the card was created
          format: date-time
          type: string
        createdBy:
          description: The user id that created the card
          type: string
        endDate:
          description: The end date of the card
          format: date
          type: string
        jiraIssueId:
          description: Associated Jira issue ID
          type: string
        jiraLinked:
          description: Whether this card is linked to Jira
          type: boolean
        labels:
          description: List of label IDs associated with this card
          items:
            type: string
          type: array
        metricCurrent:
          description: Current value for the metric
          type: number
        metricLowerThreshold:
          description: Lower threshold for the metric
          type: number
        metricStart:
          description: Starting value for the metric
          type: number
        metricTarget:
          description: Target value for the metric
          type: number
        metricType:
          description: Type of metric for outcome/KPI cards
          type: string
        metricUnit:
          description: Unit of measurement for the metric
          type: string
        metricUpperThreshold:
          description: Upper threshold for the metric
          type: number
        organizationId:
          description: The organization ID this card belongs to
          example: iLQGOSQFOEIpkYoDgUfQO
          type: string
        parents:
          description: List of parent nodes with their context, model, and IDs
          items:
            type: object
            properties:
              contextId:
                type: string
                description: The context identifier for the parent
              model:
                type: string
                enum:
                  - card
                  - tree
                  - tree.backlog
                description: The model type of the parent
              id:
                type: string
                description: The unique identifier of the parent
            required:
              - contextId
              - model
              - id
            additionalProperties: false
          type: array
        startDate:
          description: The start date of the card
          format: date
          type: string
        updatedAt:
          description: When the card was last updated
          format: date-time
          type: string
        updatedBy:
          description: The user id that last updated the card
          type: string
        resources:
          description: List of resource links associated with this card
          type: array
          items:
            $ref: '#/components/schemas/Resource'
        workspaceId:
          description: The workspace ID this card belongs to
          example: workspace123
          type: string
      required:
        - cardId
        - organizationId
        - cardType
        - cardTitle
      type: object
    MessageResponse:
      additionalProperties: false
      properties:
        message:
          example: System provided message
          type: string
      type: object
    CardType:
      enum:
        - assumption
        - experiment
        - kpi
        - objective
        - opportunity
        - outcome
        - problem
        - product
        - solution
    Resource:
      type: object
      description: A resource link associated with a card
      properties:
        url:
          type: string
          description: The URL of the resource
        title:
          type: string
          description: The title of the resource
      required:
        - url
        - title
      additionalProperties: false
  securitySchemes:
    bearerAuth:
      scheme: bearer
      type: http

````