SolarWinds Results API

Retrieve check results and performance data

Documentation

📖
Documentation
https://documentation.solarwinds.com/en/success_center/orionplatform/content/core-swis-api.htm
📖
Authentication
https://documentation.solarwinds.com/en/success_center/orionplatform/content/core-swis-api-authentication.htm
📖
APIReference
https://github.com/solarwinds/OrionSDK/wiki/REST
📖
Documentation
https://documentation.solarwinds.com/en/success_center/swsd/content/swsd_documentation.htm
📖
APIReference
https://apidoc.samanage.com/
📖
Authentication
https://help.samanage.com/s/article/API-Authentication
📖
GettingStarted
https://documentation.solarwinds.com/en/success_center/swsd/content/swsd_getting_started_guide.htm
📖
Documentation
https://documentation.solarwinds.com/en/success_center/observability/default.htm#cshid=api-overview
📖
APIReference
https://documentation.solarwinds.com/en/success_center/observability/content/api/api-swagger.htm
📖
Authentication
https://documentation.solarwinds.com/en/success_center/observability/content/system/api-tokens.htm
📖
Documentation
https://documentation.solarwinds.com/en/success_center/pingdom/content/topics/the-pingdom-api.htm
📖
APIReference
https://docs.pingdom.com/api/
📖
Authentication
https://documentation.solarwinds.com/en/success_center/pingdom/content/shared/sw-unified-login.htm
📖
Documentation
https://documentation.solarwinds.com/en/success_center/loggly/content/admin/api-overview.htm
📖
APIReference
https://documentation.solarwinds.com/en/success_center/loggly/content/admin/api-retrieving-data.htm
📖
Authentication
https://documentation.solarwinds.com/en/success_center/loggly/content/admin/token-based-api-authentication.htm
📖
GettingStarted
https://documentation.solarwinds.com/en/success_center/loggly/content/admin/api-sending-data.htm
📖
Documentation
https://www.papertrail.com/help/http-api/
📖
APIReference
https://www.papertrail.com/help/settings-api/
📖
Documentation
https://documentation.solarwinds.com/en/success_center/papertrail/content/kb/how-it-works/search-api.htm

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/solarwinds-results-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 email required.

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

OpenAPI Specification

solarwinds-results-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: SolarWinds Loggly Account Results API
  description: RESTful API for cloud-based log management including event submission, event retrieval, search, and account management. Supports sending events over HTTP/S and retrieving log data via paginating event retrieval endpoints.
  version: '2'
  contact:
    name: SolarWinds Support
    url: https://support.solarwinds.com
  termsOfService: https://www.solarwinds.com/legal/terms
servers:
- url: https://{subdomain}.loggly.com/apiv2
  description: Loggly API Server
  variables:
    subdomain:
      default: logs-01
      description: Your Loggly subdomain
security:
- bearerAuth: []
tags:
- name: Results
  description: Retrieve check results and performance data
paths:
  /results/{checkid}:
    get:
      operationId: getResults
      summary: Solarwinds Get Raw Check Results
      description: Returns raw test results for a specific check within a time range.
      tags:
      - Results
      parameters:
      - $ref: '#/components/parameters/CheckId'
      - name: to
        in: query
        description: End of period (Unix timestamp)
        schema:
          type: integer
        example: 10
      - name: from
        in: query
        description: Start of period (Unix timestamp)
        schema:
          type: integer
        example: 10
      - name: limit
        in: query
        description: Maximum number of results
        schema:
          type: integer
          default: 100
        example: 10
      - name: offset
        in: query
        description: Offset for pagination
        schema:
          type: integer
          default: 0
        example: 10
      - name: probes
        in: query
        description: Filter by comma-separated probe IDs
        schema:
          type: string
        example: example_value
      - name: status
        in: query
        description: Filter by result status
        schema:
          type: string
          enum:
          - up
          - down
          - unconfirmed_down
          - unknown
        example: up
      responses:
        '200':
          description: Check results
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResultList'
              examples:
                Getresults200Example:
                  summary: Default getResults 200 response
                  x-microcks-default: true
                  value:
                    results:
                    - probeid: '500123'
                      time: 10
                      status: example_value
                      responsetime: 10
                      statusdesc: example_value
                      statusdesclong: example_value
        '401':
          description: Unauthorized
        '404':
          description: Check not found
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  parameters:
    CheckId:
      name: checkid
      in: path
      required: true
      description: Unique identifier for the check
      schema:
        type: integer
  schemas:
    ResultList:
      type: object
      properties:
        results:
          type: array
          items:
            $ref: '#/components/schemas/Result'
          example: []
    Result:
      type: object
      properties:
        probeid:
          type: integer
          description: Probe server ID
          example: '500123'
        time:
          type: integer
          description: Test timestamp (Unix)
          example: 10
        status:
          type: string
          description: Result status
          example: example_value
        responsetime:
          type: integer
          description: Response time in milliseconds
          example: 10
        statusdesc:
          type: string
          description: Status description
          example: example_value
        statusdesclong:
          type: string
          description: Detailed status description
          example: example_value
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API token for authentication via Authorization Bearer header
    customerToken:
      type: apiKey
      in: path
      name: token
      description: Customer token for event submission endpoints
externalDocs:
  description: Loggly API Documentation
  url: https://documentation.solarwinds.com/en/success_center/loggly/content/admin/api-overview.htm