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

# Get Blink Data Table

> Retrieve structured data in table format. Great for displaying key data, such as APY, available balance, etc.



## OpenAPI

````yaml /openapi/blinks.json get /v1/blink-data-table
openapi: 3.1.0
info:
  title: Dialect Blinks API
  description: >-
    Blockchain Links (Blinks) are the fastest way to take onchain experiences
    and make them distributable and actionable everywhere. This API enables
    applications to unbundle their product experiences from their apps and
    sites, allowing users to take instant, no-redirect actions wherever they
    are. Blinks transform URLs into complete, interactive blockchain experiences
    that can be embedded in any client application with automatic unfurling and
    transaction capabilities.
  version: 0.1.0
servers:
  - url: https://api.dial.to
    description: Dialect Production
  - url: http://localhost:8770
    description: Local Server
security:
  - clientKey: []
paths:
  /v1/blink-data-table:
    get:
      tags:
        - Blink Data Table
      summary: Get Blink Data Table
      description: >-
        Retrieve structured data in table format. Great for displaying key data,
        such as APY, available balance, etc.
      operationId: getBlinkDataTable
      parameters:
        - in: query
          name: apiUrl
          schema:
            type: string
            format: uri
            description: Blink API URL
            default: https://jito.dial.to/stake
            example: https://jito.dial.to/stake
          required: true
        - in: query
          name: account
          schema:
            type: string
            description: Wallet address of the user
          required: false
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BlinkDataTable'
        '502':
          description: Failed to fetch data from Blink Provider
components:
  schemas:
    BlinkDataTable:
      type: object
      properties:
        rows:
          type: array
          items:
            type: object
            properties:
              key:
                type: string
              title:
                type: string
              value:
                type: string
              icon:
                type: string
              url:
                type: string
            required:
              - key
              - title
              - value
        context:
          $ref: '#/components/schemas/BlinkContext'
        links:
          type: object
          properties:
            blink:
              type: string
            preview:
              type: string
          required:
            - blink
            - preview
      required:
        - rows
        - context
        - links
      description: Blink Data Table
    BlinkContext:
      type: object
      properties:
        url:
          type: string
        websiteUrl:
          type: string
        category:
          type: string
        provider:
          $ref: '#/components/schemas/BlinkProvider'
      required:
        - url
      description: Blink Context
    BlinkProvider:
      type: object
      properties:
        name:
          type: string
        icon:
          type: string
      required:
        - name
      description: Blink Provider
  securitySchemes:
    clientKey:
      type: apiKey
      description: Client key to authorize requests.
      name: x-blink-client-key
      in: header

````