DAS Technology Site API

The Site API from DAS Technology — 2 operation(s) for site.

Operations 2

GET /v1/site/list Retrieve sites #
GET /v1/site/{id} Retrieve single site by site identifier #

Documentation

Specifications

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/das-technology-site-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

das-technology-site-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: v1
  title: DASWebAPI V1 Site API
servers:
- url: https://api.digitalairstrike.com
tags:
- name: Site
paths:
  /v1/site/list:
    get:
      tags:
      - Site
      summary: Retrieve sites
      operationId: Site_GetSites
      parameters:
      - name: isActive
        in: query
        description: Nullable boolean; Null returns all sites, True returns all sites that are active; False returns all sites that inactive
        required: false
        schema:
          type: boolean
      responses:
        '200':
          description: OK
          content:
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.Site'
            text/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.Site'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.Site'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.Site'
            text/html:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DAS.Models.Site'
  /v1/site/{id}:
    get:
      tags:
      - Site
      summary: Retrieve single site by site identifier
      operationId: Site_GetSite
      parameters:
      - name: id
        in: path
        description: The site ID of the value you want to return
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/xml:
              schema:
                $ref: '#/components/schemas/DAS.Models.Site'
            text/xml:
              schema:
                $ref: '#/components/schemas/DAS.Models.Site'
            application/json:
              schema:
                $ref: '#/components/schemas/DAS.Models.Site'
            text/json:
              schema:
                $ref: '#/components/schemas/DAS.Models.Site'
            text/html:
              schema:
                $ref: '#/components/schemas/DAS.Models.Site'
components:
  schemas:
    DAS.Models.RatingMethod:
      type: object
      properties:
        id:
          format: int32
          type: integer
        name:
          type: string
        description:
          type: string
        ratingDisplay:
          type: string
        ratingMethodItems:
          type: array
          items:
            $ref: '#/components/schemas/DAS.Models.RatingMethodItems'
    DAS.Models.Site:
      type: object
      properties:
        id:
          format: int32
          type: integer
        name:
          type: string
        siteUrl:
          type: string
        description:
          type: string
        ratingMethod:
          $ref: '#/components/schemas/DAS.Models.RatingMethod'
        logoUrl:
          type: string
        active:
          type: boolean
        slReporting:
          type: boolean
        guid:
          format: uuid
          type: string
    DAS.Models.RatingMethodItems:
      type: object
      properties:
        rating:
          type: string
        orderId:
          format: int32
          type: integer
        ratingValue:
          format: int32
          type: integer