Symantec website screenshot

Symantec

Symantec (now part of Broadcom) is a leading enterprise cybersecurity company providing endpoint security, threat detection, data loss prevention, identity security, and network protection products. Symantec offers REST APIs for Endpoint Protection Manager (SEPM), Endpoint Security Cloud (SES), Endpoint Detection and Response (EDR), Data Loss Prevention (DLP), and the Integrated Cyber Defense Manager (ICDm) platform.

4 APIs 0 Features
BroadcomCybersecurityDLPEDREndpoint ProtectionEndpoint SecuritySecuritySymantecFortune 500

APIs

Symantec Endpoint Protection Manager API

The SEPM REST API enables programmatic access to Symantec Endpoint Protection Manager for managing computers, groups, policies, and server configuration. Requires OAuth 2.0 auth...

Symantec Endpoint Security API

The Symantec Endpoint Security (SES) REST API provides access to cloud-based endpoint security management including device inventory, threat events, incident management, and beh...

Symantec Endpoint Detection and Response API

The Symantec EDR REST API enables programmatic access to endpoint detection and response capabilities including incident management, threat hunting, forensics, and entity querie...

Symantec Data Loss Prevention API

The Symantec DLP REST API enables integration with the DLP Enforce platform for incident management, policy management, and data discovery. Supports retrieving incidents, updati...

Collections

Pricing Plans

Symantec Plans Pricing

1 plans

PLANS

Rate Limits

Symantec Rate Limits

2 limits

RATE LIMITS

FinOps

Semantic Vocabularies

Symantec Context

15 classes · 1 properties

JSON-LD

API Governance Rules

Symantec API Rules

7 rules · 6 warnings

SPECTRAL

JSON Structure

Symantec Computer Structure

0 properties

JSON STRUCTURE

Example Payloads

Press

Broadcom Completes Acquisition of Symantec Enterprise ...

2026-05-25

Press Releases | Gen Digital

2026-05-25

Broadcom Introduces Industry's First Incident Prediction ...

2026-05-25

Symantec Unveils AI-Powered ICS Cybersecurity Platform

2026-05-25

Cyber Security - Symantec Enterprise Cloud

2026-05-25

Visuals

View API subway map

Resources

🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
APIDocumentation
APIDocumentation
🔗
APIDocumentation
APIDocumentation
🔗
Documentation
Documentation
💬
Support
Support
🔗
Community
Community
👥
GitHub
GitHub
🔗
Login
Login
📜
TermsOfService
TermsOfService
📜
PrivacyPolicy
PrivacyPolicy
🟢
StatusPage
StatusPage
📰
Blog
Blog
🔗
TechDocs
TechDocs
🔗
LlmsText
LlmsText

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Symantec Endpoint Protection Manager API
  version: '14.0'
items:
- info:
    name: Authentication
    type: folder
  items:
  - info:
      name: Authenticate to SEPM
      type: http
    http:
      method: POST
      url: https://{sepm-host}:8446/sepm/api/v1/identity/authenticate
      body:
        type: json
        data: '{}'
    docs: Authenticates with SEPM using username, password, and domain credentials. Returns a Bearer token and refresh token
      for subsequent API calls. Requires SysAdmin role for full API access.
- info:
    name: API Version
    type: folder
  items:
  - info:
      name: Get API Version
      type: http
    http:
      method: GET
      url: https://{sepm-host}:8446/sepm/api/v1/api-stats/version
      auth:
        type: bearer
        token: '{{bearerToken}}'
    docs: Returns the current SEPM REST API version information.
- info:
    name: Computers
    type: folder
  items:
  - info:
      name: List Computers
      type: http
    http:
      method: GET
      url: https://{sepm-host}:8446/sepm/api/v1/computers
      params:
      - name: computerName
        value: ''
        type: query
        description: Filter computers by name
      - name: pageSize
        value: ''
        type: query
        description: Number of results per page
      - name: pageIndex
        value: ''
        type: query
        description: Page number (1-indexed)
      - name: sort
        value: ''
        type: query
        description: Sort field and direction
      auth:
        type: bearer
        token: '{{bearerToken}}'
    docs: Retrieves a paginated list of computers (endpoints) managed by SEPM. Supports filtering by computer name and pagination.
      Returns device details including hostname, OS, SEP version, and last update time.
  - info:
      name: Remove Computer
      type: http
    http:
      method: DELETE
      url: https://{sepm-host}:8446/sepm/api/v1/computers/:computerId
      params:
      - name: computerId
        value: ''
        type: path
        description: Unique computer identifier
      auth:
        type: bearer
        token: '{{bearerToken}}'
    docs: Removes a computer from SEPM management. The computer's endpoint protection client is unmanaged upon removal.
  - info:
      name: Move Computer to Group
      type: http
    http:
      method: PATCH
      url: https://{sepm-host}:8446/sepm/api/v1/computers/:computerId/group
      params:
      - name: computerId
        value: ''
        type: path
        description: Unique computer identifier
      body:
        type: json
        data: '{}'
      auth:
        type: bearer
        token: '{{bearerToken}}'
    docs: Moves a computer to a different group within SEPM. The computer's policy assignments change based on the new group's
      policy settings.
- info:
    name: Groups
    type: folder
  items:
  - info:
      name: List Groups
      type: http
    http:
      method: GET
      url: https://{sepm-host}:8446/sepm/api/v1/groups
      auth:
        type: bearer
        token: '{{bearerToken}}'
    docs: Retrieves a list of all groups configured in SEPM. Groups organize computers and define policy application scope.
  - info:
      name: Create Group
      type: http
    http:
      method: POST
      url: https://{sepm-host}:8446/sepm/api/v1/groups
      body:
        type: json
        data: '{}'
      auth:
        type: bearer
        token: '{{bearerToken}}'
    docs: Creates a new computer group in SEPM.
  - info:
      name: Delete Group
      type: http
    http:
      method: DELETE
      url: https://{sepm-host}:8446/sepm/api/v1/groups/:groupId
      params:
      - name: groupId
        value: ''
        type: path
        description: Unique group identifier
      auth:
        type: bearer
        token: '{{bearerToken}}'
    docs: Deletes a group from SEPM. The group must be empty before deletion.
- info:
    name: Administrators
    type: folder
  items:
  - info:
      name: List Administrators
      type: http
    http:
      method: GET
      url: https://{sepm-host}:8446/sepm/api/v1/admin/admins
      auth:
        type: bearer
        token: '{{bearerToken}}'
    docs: Retrieves a list of all administrator accounts configured in SEPM.
bundled: true