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

# Get technologies along with number of assets

> Retrieves a list of technologies with number of assets.



## OpenAPI

````yaml /api-reference/openapi.json get /api/assets/tech
openapi: 3.0.0
info:
  title: Open Attack Surface Management
  description: Open-source platform for cybersecurity Attack Surface Management (ASM)
  version: '1.0'
  contact: {}
servers:
  - url: https://{baseUrl}/api/v1
    variables:
      baseUrl:
        default: localhost:3000
        description: API server hostname with port (e.g. localhost:3000, api.example.com)
security: []
tags: []
externalDocs:
  description: Authentication Docs
  url: auth/docs
paths:
  /api/assets/tech:
    get:
      tags:
        - Assets
      summary: Get technologies along with number of assets
      description: Retrieves a list of technologies with number of assets.
      operationId: AssetsController_getTechnologyAssets
      parameters:
        - name: search
          required: false
          in: query
          schema:
            type: string
        - name: page
          required: false
          in: query
          schema:
            example: 1
            type: number
        - name: limit
          required: false
          in: query
          schema:
            example: 10
            type: number
        - name: sortBy
          required: false
          in: query
          schema:
            example: createdAt
            type: string
        - name: sortOrder
          required: false
          in: query
          schema:
            example: DESC
            type: string
        - name: value
          required: false
          in: query
          schema:
            type: string
        - name: targetIds
          required: false
          in: query
          schema:
            type: array
            items:
              type: string
        - name: ipAddresses
          required: false
          in: query
          schema:
            type: array
            items:
              type: string
        - name: ports
          required: false
          in: query
          schema:
            type: array
            items:
              type: string
        - name: hosts
          required: false
          in: query
          schema:
            type: array
            items:
              type: string
        - name: techs
          required: false
          in: query
          schema:
            type: array
            items:
              type: string
        - name: statusCodes
          required: false
          in: query
          schema:
            type: array
            items:
              type: string
        - name: tlsHosts
          required: false
          in: query
          schema:
            type: array
            items:
              type: string
        - name: startDate
          required: false
          in: query
          description: Filter assets created on or after this date (YYYY-MM-DD)
          schema:
            type: string
        - name: endDate
          required: false
          in: query
          description: Filter assets created on or before this date (YYYY-MM-DD)
          schema:
            type: string
        - name: X-Workspace-Id
          in: header
          description: Workspace ID
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetManyGetTechnologyAssetsDTODto'
                allOf:
                  - $ref: '#/components/schemas/AppResponseSerialization'
components:
  schemas:
    GetManyGetTechnologyAssetsDTODto:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/GetTechnologyAssetsDTO'
        total:
          type: number
        page:
          type: number
        limit:
          type: number
        hasNextPage:
          type: boolean
        pageCount:
          type: number
      required:
        - data
        - total
        - page
        - limit
        - hasNextPage
        - pageCount
    GetTechnologyAssetsDTO:
      type: object
      properties:
        technology:
          $ref: '#/components/schemas/TechnologyDetailDTO'
        assetCount:
          type: number
      required:
        - technology
        - assetCount
    TechnologyDetailDTO:
      type: object
      properties:
        name:
          type: string
        cats:
          type: array
          items:
            type: string
        version:
          type: string
        description:
          type: string
        html:
          type: array
          items:
            type: string
        icon:
          type: string
        implies:
          type: array
          items:
            type: string
        js:
          type: object
        oss:
          type: boolean
        scriptSrc:
          type: array
          items:
            type: string
        website:
          type: string
        pricing:
          type: array
          items:
            type: string
        saas:
          type: boolean
        dom:
          type: array
          items:
            type: string
        meta:
          type: object
        headers:
          type: object
        cookies:
          type: object
        dns:
          type: object
        url:
          type: array
          items:
            type: string
        scripts:
          type: array
          items:
            type: string
        xhr:
          type: array
          items:
            type: string
        requires:
          type: array
          items:
            type: string
        categories:
          type: array
          items:
            type: string
        iconUrl:
          type: string
        categoryNames:
          type: array
          items:
            type: string
      required:
        - name

````