Securonix Object Relation Counts API

The Object Relation Counts API from Securonix — 1 operation(s) for object relation counts.

Operations 1

GET /{object_type}/{object_type_id}/relation-counts List Relation Counts for an Object Type #

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/securonix-object-relation-counts-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

securonix-object-relation-counts-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: ThreatQ Object Relation Counts API
  description: '© 2025


    The API doc you are viewing is a BETA version that provides an early look at ThreatQ’s new API documentation format.'
  license:
    name: null
    url: null
  version: 1.0.0
  x-logo:
    url: null
    backgroundColor: null
    altText: ThreatQuotient
servers:
- description: SwaggerHub API Auto Mocking
  url: https://virtserver.swaggerhub.com/securonix-b7a/ThreatQ/1.0.0
- url: https://threatq.com/api
  description: ThreatQ Server
security:
- BearerAuth: []
tags:
- name: Object Relation Counts
paths:
  /{object_type}/{object_type_id}/relation-counts:
    get:
      tags:
      - Object Relation Counts
      summary: List Relation Counts for an Object Type
      description: 'This path can be used for any object type installed on the system.


        Examples:


        Indicator Sources: /indicators/:indicator_id/relation-counts


        Attack Pattern Sources: /attack_pattern/:attack_pattern_id/relation-counts'
      parameters:
      - $ref: '#/components/parameters/ObjectType'
      - $ref: '#/components/parameters/ObjectTypeId'
      responses:
        '200':
          description: Request Successful
          content:
            application/json:
              schema:
                properties:
                  data:
                    properties:
                      indicators:
                        description: Number of Indicators related to the object
                        type: integer
                        example: 51
                      adversaries:
                        description: Number of Adversaries related to the object
                        type: integer
                        example: 2
                      events:
                        description: Number of Events related to the object
                        type: integer
                        example: 7
                      attachments:
                        description: Number of Attachments (Files) related to the object
                        type: integer
                        example: 11
                      signatures:
                        description: Number of Signatures related to the object
                        type: integer
                        example: 3
                      investigations:
                        description: Number of Investigations related to the object
                        type: integer
                        example: 6
                      attack_pattern:
                        description: Number of Attack Patterns related to the object
                        type: integer
                        example: 17
                      campaign:
                        description: Number of Campaigns related to the object
                        type: integer
                        example: 1
                      course_of_action:
                        description: Number of Courses of Action related to the object
                        type: integer
                        example: 3
                      exploit_target:
                        description: Number of Exploit Targets related to the object
                        type: integer
                        example: 4
                      identity:
                        description: Number of Identities related to the object
                        type: integer
                        example: 2
                      incident:
                        description: Number of Incidents related to the object
                        type: integer
                        example: 512
                      intrusion_set:
                        description: Number of Intrusion Sets related to the object
                        type: integer
                        example: 5
                      malware:
                        description: Number of Malware related to the object
                        type: integer
                        example: 13
                      report:
                        description: Number of Reports related to the object
                        type: integer
                        example: 3
                      tool:
                        description: Number of Tools related to the object
                        type: integer
                        example: 2
                      ttp:
                        description: Number of TTP related to the object
                        type: integer
                        example: 10
                      vulnerability:
                        description: Number of Vulnerability related to the object
                        type: integer
                        example: 11
                    type: object
                type: object
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
      x-visibility: public
      operationId: getByObjectTypeByObjectTypeIdRelationCounts
      x-operation-id-source: derived
components:
  responses:
    Unauthorized:
      description: Unauthorized
    NotFound:
      description: Object Not Found
  parameters:
    ObjectTypeId:
      name: object_type_id
      in: path
      description: The ID for the record of the specified Object Type whose context you would like to retrieve
      required: true
      schema:
        type: integer
        example: 6
    ObjectType:
      name: object_type
      in: path
      description: 'The collection identifier for the Object Type whose context you would like to retrieve. Options include:

        adversaries, attachments, attack_pattern, campaign, course_of_action, event, exploit_target, identity, incident,

        indicators, intrustion_set, malware, report, signature, tool, ttp, and vulnerability. If you have any additional custom

        objects installed on your system, use the value for the `collection` field associated with the object definition.'
      required: true
      schema:
        type: string
        example: indicators
  securitySchemes:
    BearerAuth:
      type: http
      description: "Once authorized, all subsequent requests must include an `Authorization` header\n with the granted `access_token`. See the OAuth2 Authentication path for more information on how to authorize a User.<br><br>\n Example Header: `Authorization: Bearer <access_token>`"
      name: Authorization
      in: header
      bearerFormat: Bearer `<access_token>`
      scheme: bearer