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

# API Info

> Versioned API info.

Returns service name, version, chain, and timestamp.


## OpenAPI

````yaml GET /v1/info
openapi: 3.0.3
info:
  title: NovaShield Security Engine
  description: >-
    Enterprise-grade security scanning API for Solana. Analyze transactions,
    tokens, addresses, and dApps before user interaction.
  version: 3.0.0
  contact:
    name: NovaShield
    url: https://nshield.org
servers:
  - url: https://api.novashield.so
    description: Production
  - url: https://sapi.novashield.so
    description: Staging
security: []
tags:
  - name: Security Scanning
    description: >-
      Core security scanning endpoints for transactions, tokens, addresses, and
      dApps
paths:
  /v1/info:
    get:
      summary: API Info
      description: Versioned API info endpoint.
      responses:
        '200':
          description: API information
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InfoResponse'
components:
  schemas:
    InfoResponse:
      type: object
      properties:
        service:
          type: string
          example: NovaShield Security Engine
        version:
          type: string
          example: 3.0.0
        chain:
          type: string
          example: solana
        timestamp:
          type: string
          format: date-time

````