> ## Documentation Index
> Fetch the complete documentation index at: https://sure-917046f5-mintlify-docs-update-1787381466394.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Retrieve a security referenced by family investment data



## OpenAPI

````yaml /openapi.yaml get /api/v1/securities/{id}
openapi: 3.0.3
info:
  title: Sure API
  version: v1
  description: OpenAPI documentation generated from executable request specs.
servers:
  - url: https://app.sure.am
    description: Production
  - url: http://localhost:3000
    description: Local development
security: []
paths:
  /api/v1/securities/{id}:
    parameters:
      - name: id
        in: path
        required: true
        description: Security ID
        schema:
          type: string
          format: uuid
    get:
      tags:
        - Securities
      summary: Retrieve a security referenced by family investment data
      responses:
        '200':
          description: security retrieved
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Security'
        '401':
          description: unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: insufficient scope
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: security not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - apiKeyAuth: []
components:
  schemas:
    Security:
      type: object
      required:
        - id
        - ticker
        - kind
        - offline
        - created_at
        - updated_at
      properties:
        id:
          type: string
          format: uuid
        ticker:
          type: string
        name:
          type: string
          nullable: true
        kind:
          type: string
          enum:
            - standard
            - cash
        country_code:
          type: string
          nullable: true
        exchange_mic:
          type: string
          nullable: true
        exchange_acronym:
          type: string
          nullable: true
        exchange_operating_mic:
          type: string
          nullable: true
        exchange_name:
          type: string
          nullable: true
        offline:
          type: boolean
        offline_reason:
          type: string
          nullable: true
        website_url:
          type: string
          nullable: true
        logo_url:
          type: string
          nullable: true
        first_provider_price_on:
          type: string
          format: date
          nullable: true
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: string
        message:
          type: string
          nullable: true
        details:
          oneOf:
            - type: array
              items:
                type: string
            - type: object
          nullable: true
        errors:
          type: array
          items:
            type: string
          nullable: true
          description: >-
            Validation error messages (alternative to details used by trades,
            valuations, etc.)
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      name: X-Api-Key
      in: header
      description: API key for authentication. Generate one from your account settings.

````