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

# Get one listener

> One listener with its full configuration — keywords, exclusions, per-source queries, sensitivity and schedule — plus its current scheduler state.

An id belonging to another workspace is indistinguishable from one that does not exist: both answer 404.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/listeners/{id}
openapi: 3.1.0
info:
  title: Openpulse API
  version: 1.0.0
  summary: Read buying signals, accounts and pipeline from an Openpulse workspace.
  description: >-
    The programmatic surface of Openpulse, authenticated with a workspace API
    key.


    **A key always acts as a member, never an admin.** Privilege comes from
    scopes, and

    the scope vocabulary has no way to express an admin action: a leaked key can
    read

    signals and move deals, and can never create a listener, change billing, or
    mint

    another key. Routes that declare no scope are unreachable by a key at all,
    which is

    why this document describes fewer operations than the server has handlers.


    For an assistant rather than a program, prefer the MCP server at `/mcp`: it
    is the

    same data with tool descriptions a model can act on, and it uses OAuth
    rather than a

    shared secret. See `/api.md`.


    **Webhooks**, described below, are the other direction: calls this
    workspace's server

    makes to yours. Verify each one by recomputing the HMAC and comparing it to
    the

    `x-openpulse-signature` header — an unverified delivery is a POST from
    anyone

    who finds the URL, not proof it came from Openpulse.
  contact:
    email: support@openpulse.cloud
    url: https://openpulse.cloud/api.md
  license:
    name: Proprietary
    identifier: LicenseRef-Openpulse-Terms
servers:
  - url: https://api.openpulse.cloud
    description: Production
security:
  - apiKey: []
externalDocs:
  url: https://openpulse.cloud/api.md
  description: Openpulse for agents
paths:
  /v1/listeners/{id}:
    get:
      tags:
        - listeners
      summary: Get one listener
      description: >-
        One listener with its full configuration — keywords, exclusions,
        per-source queries, sensitivity and schedule — plus its current
        scheduler state.


        An id belonging to another workspace is indistinguishable from one that
        does not exist: both answer 404.
      operationId: getV1ListenersById
      parameters:
        - name: id
          in: path
          description: The id of the resource.
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Success.
          content:
            application/json:
              schema:
                type: object
        '401':
          description: The key is missing, malformed, expired or revoked.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: >-
            The key lacks the `listeners:read` scope, or the workspace's plan
            does not include this.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '429':
          description: Rate limited. Retry after the interval in the response headers.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - apiKey:
            - listeners:read
components:
  schemas:
    Error:
      type: object
      properties:
        message:
          type: string
          description: Human-readable explanation.
        code:
          type: string
          description: Stable machine-readable error code.
      required:
        - message
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      description: >-
        A workspace API key, created in workspace settings and sent as
        `Authorization: Bearer op_live_…`. Session cookies are not accepted.
        Scopes: signals:read, accounts:read, listeners:read, listeners:analyse,
        pipeline:read, pipeline:write, collections:write, export:read.

````

## Related topics

- [Get one account](/api-reference/accounts/get-one-account.md)
- [Tools](/mcp/tools.md)
- [List listeners](/api-reference/listeners/list-listeners.md)
