Webscale Networks Log schemas API

The Log schemas API from Webscale Networks — 1 operation(s) for log schemas.

Operations 1

GET /log-schemas Read log schemas #

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/webscale-networks-log-schemas-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

webscale-networks-log-schemas-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Webscale Log schemas API
  version: '2026.273'
  description: The Webscale APIs allow programmatic access to the Webscale services.
servers:
- url: https://api.webscale.com/v2
security:
- access_key: []
tags:
- name: Log schemas
  x-tag-expanded: false
paths:
  /log-schemas:
    get:
      summary: Read log schemas
      description: Returns all log schemas usable by an account.
      tags:
      - Log schemas
      responses:
        '200':
          description: The call was successful.
          content:
            application/json:
              schema:
                description: An array of log schemas.
                type: array
                items:
                  $ref: '#/components/schemas/LogSchema'
      operationId: getLogSchemas
      x-operation-id-source: derived
components:
  schemas:
    LogSchema:
      description: A schema describing a particular log.
      type: object
      required:
      - type
      - display
      - default_order
      - fields
      - retention
      additionalProperties: false
      properties:
        type:
          description: The type of log being defined.
          type: string
          enum:
          - access
          - cdn
          - csp-reports
          - custom
          - pageviews
          - events
        display:
          description: Display name for the type of log being defined.
          type: string
          enum:
          - CDN logs
          - CSP reports
          - Pageview logs
          - Traffic viewer
          - Event logs
        default_order:
          description: Defines the default behavior for sorting logs based on log fields. Ties are broken with the next log fields described in the ordering.
          type: string
        fields:
          description: An array of fields.
          type: array
          items:
            $ref: '#/components/schemas/Field'
        retention:
          anyOf:
          - type: array
            description: Array of applications' Log retention.
            items:
              $ref: '#/components/schemas/Retention'
          - type: object
            description: Account's Log retention.
            $ref: '#/components/schemas/Retention'
    Field:
      description: A log field.
      type: object
      required:
      - name
      - display
      - type
      - description
      - is_metric
      additionalProperties: false
      properties:
        name:
          description: The name of the field.
          type: string
        type:
          $ref: '#/components/schemas/Type'
        display:
          description: Display name for the defined field type.
          type: string
        description:
          description: A description of the field.
          type: string
        is_metric:
          description: Indicates whether the field can be used in a groupselect.
          type: boolean
        aliases:
          description: A collection of alternate names for the field.
          type: array
          items:
            type: string
    Type:
      description: A log field type.
      type: object
      required:
      - name
      additionalProperties: false
      properties:
        name:
          description: Name of the type
          type: string
          enum:
          - address
          - array
          - asn
          - boolean
          - byte-count
          - correlation-id
          - country-code
          - duration
          - enum
          - host
          - label
          - path
          - port
          - query
          - script
          - status-code
          - string
          - timestamp
          - url
          - url-map-id
          - web-control-id
        element_type:
          description: When a Field is of array type, element_type defines the type of the elements within the array.
          $ref: '#/components/schemas/Type'
        values:
          description: When a Field is of enum type, the enum's values will be defined.
          type: array
          items:
            $ref: '#/components/schemas/EnumValue'
    Retention:
      type: object
      description: Log retention details.
      properties:
        online_age:
          type: integer
          description: Days logs will be retained online.
    EnumValue:
      description: An enumerated value.
      type: object
      required:
      - value
      - display
      additionalProperties: false
      properties:
        value:
          description: Value of an enum element.
          type: string
        display:
          description: How an enum element should be displayed.
          type: string
  securitySchemes:
    access_key:
      type: http
      scheme: Bearer
      description: "An access key secret must be sent as a\n[bearer token](https://www.rfc-editor.org/rfc/rfc7235#section-5.1)\nwith each HTTP request in an `Authorization` header.  Tokens are obtained\nin one of three ways:\n\n1. Creating an access key in your\n   [user profile](https://control.webscale.com/profile).\n2. Using an access key secret created when a service user is created\n   with the [POST accounts/{id}/service-users](#post-/accounts/-id-/service-users)\n   API.\n3. Obtaining a temporary access key using an existing access key secret\n   for a specified account with the\n   [POST users/self/authorization](#post-/users/-id-/authorization) API.\n"