> ## Documentation Index
> Fetch the complete documentation index at: https://altostrat.io/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# List BGP Threat Intelligence Policies

> Retrieves a list of all BGP Threat Intelligence policies associated with your account.



## OpenAPI

````yaml /api/en/utm-ips.yaml get /content/bgp/policy
openapi: 3.0.3
info:
  title: Altostrat UTM & IPS API
  version: 1.0.0
  description: >-
    Manage DNS filtering, BGP threat mitigation, content categories, and site
    policy attachment through the public `/content` gateway path.
servers:
  - url: https://v1.api.altostrat.io
security:
  - bearerAuth: []
tags:
  - name: DNS Content Filtering
    description: Manage DNS-based content filtering policies and their components.
  - name: BGP Threat Intelligence
    description: Manage BGP-based IP reputation policies and threat feeds.
  - name: Site Security Configuration
    description: View and manage security policy attachments for specific sites.
paths:
  /content/bgp/policy:
    get:
      tags:
        - BGP Threat Intelligence
      summary: List BGP Threat Intelligence Policies
      description: >-
        Retrieves a list of all BGP Threat Intelligence policies associated with
        your account.
      operationId: listBgpPolicies
      responses:
        '200':
          description: A list of BGP policies.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BgpPolicy'
components:
  schemas:
    BgpPolicy:
      type: object
      properties:
        id:
          type: string
          format: uuid
          readOnly: true
          example: 9b1d3e6a-5c3a-4f1e-9a0a-2b2a1e1d8e8b
        name:
          type: string
          example: Block Known Threats
        enabled:
          type: boolean
          example: true
        default:
          type: boolean
          readOnly: true
          description: True if this is the default policy for the account.
          example: false
        lists:
          type: array
          description: A list of BGP IP reputation list IDs included in this policy.
          items:
            type: string
            format: uuid
          example:
            - 9b1e3e6a-5c3a-4f1e-9a0a-2b2a1e1d8e8c
        site_count:
          type: integer
          readOnly: true
          description: The number of sites currently using this policy.
          example: 3
        updated_at:
          type: string
          format: date-time
          readOnly: true
        created_at:
          type: string
          format: date-time
          readOnly: true
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````