Bitvore Alert API API

Alerts API

Operations 6

GET /muni/alerts Get a list of all Alerts #
POST /muni/alerts/limit/{alertId}/{limit} Set alert limit #
GET /muni/alerts/record/{rowkey} Get record #
GET /muni/alerts/results/{transactionid} Get alert results #
GET /muni/alerts/transactions/{alertId} Get a alert transactions list #
GET /muni/alerts/version Get API version #

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/bitvore-alert-api-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

bitvore-alert-api-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: 'Bitvore Deprecated APIs. These APIs are still functional, but will be phased out. Please transition to the latest API version to avoid possible disruption.


    * The Intelligence API has been replaced by the Corp News API.

    * The Municipal Bond API has been replaced by the Muni News API.'
  version: Deprecated 2019
  title: Deprecated Custom Alert API
  license:
    name: Copyright Bitvore Corp. 2026
servers:
- url: https://api.bitvore.com/
tags:
- name: Alert API
  description: Alerts API
paths:
  /muni/alerts:
    get:
      tags:
      - Alert API
      summary: Get a list of all Alerts
      operationId: handleListAlertsUsingGET
      parameters:
      - name: uid
        in: query
        description: uid
        required: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/AlertDefinition'
                originalRef: AlertDefinition
      security:
      - BasicAuth:
        - Global
      deprecated: false
  /muni/alerts/limit/{alertId}/{limit}:
    post:
      tags:
      - Alert API
      summary: Set alert limit
      operationId: handleSetAlertLimitUsingPOST
      parameters:
      - name: alertId
        in: path
        description: alertId
        required: true
        schema:
          type: integer
          format: int64
      - name: limit
        in: path
        description: limit
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: string
      security:
      - BasicAuth:
        - Global
      deprecated: false
  /muni/alerts/record/{rowkey}:
    get:
      tags:
      - Alert API
      summary: Get record
      operationId: handleAlertRecordUsingGET
      parameters:
      - name: rowkey
        in: path
        description: rowkey
        required: true
        schema:
          type: string
      - name: alertId
        in: query
        description: alertId
        required: false
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/MuniBondNewsRecord'
                originalRef: MuniBondNewsRecord
      security:
      - BasicAuth:
        - Global
      deprecated: false
  /muni/alerts/results/{transactionid}:
    get:
      tags:
      - Alert API
      summary: Get alert results
      operationId: handleAlertResultsUsingGET
      parameters:
      - name: transactionid
        in: path
        description: transactionid
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/AlertResults'
                originalRef: AlertResults
      security:
      - BasicAuth:
        - Global
      deprecated: false
  /muni/alerts/transactions/{alertId}:
    get:
      tags:
      - Alert API
      summary: Get a alert transactions list
      operationId: handleAlertTransactionsUsingGET
      parameters:
      - name: alertId
        in: path
        description: alertId
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/AlertTransactions'
                originalRef: AlertTransactions
      security:
      - BasicAuth:
        - Global
      deprecated: false
  /muni/alerts/version:
    get:
      tags:
      - Alert API
      summary: Get API version
      operationId: handleAlertAPIVersionUsingGET
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: string
      security:
      - BasicAuth:
        - Global
      deprecated: false
components:
  schemas:
    AlertDefinition:
      type: object
      properties:
        alertId:
          type: integer
          format: int64
        alertName:
          type: string
        alertTime:
          type: string
      title: AlertDefinition
    AlertResult:
      type: object
      properties:
        cusips:
          type: array
          items:
            type: string
        rowKey:
          type: string
      title: AlertResult
    AlertTransactions:
      type: object
      properties:
        alertId:
          type: integer
          format: int64
        transactions:
          type: array
          items:
            $ref: '#/components/schemas/AlertTransactionEntry'
            originalRef: AlertTransactionEntry
      title: AlertTransactions
    MuniBondNewsRecord:
      type: object
      properties:
        recordType:
          type: string
          example: WEBCONTENT
          description: Type of the record
        rowKey:
          type: string
          example: 070000015cf083aba01f0826ecfe718e965b577c572166b14a77651c
          description: Key uniquely idenfiying the record
        tags:
          type: object
          description: 'Tags for the record. The property is a JSON object with 0 or more single or multi-valued properties representing each tag like { "city" : [ "Irvine"] }'
        timestamp:
          type: string
          example: 2017-07-03T08:52:33+0000
          description: Timestamp of the record
      title: MuniBondNewsRecord
      description: Single intelligence item.
    AlertResults:
      type: object
      properties:
        results:
          type: array
          items:
            $ref: '#/components/schemas/AlertResult'
            originalRef: AlertResult
        transactionId:
          type: integer
          format: int64
      title: AlertResults
    AlertTransactionEntry:
      type: object
      properties:
        alertTime:
          type: string
        count:
          type: integer
          format: int32
        transactionId:
          type: integer
          format: int64
      title: AlertTransactionEntry
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic