Syniverse Reports API

The reports API from Syniverse — 1 operation(s) for reports.

Operations 1

POST /spam/report Submit spam reports

Documentation

📖
Documentation
https://sdcdocumentation.syniverse.com/index.php/omni-channel/user-guides/sms-mms-user-guide
📖
APIReference
https://sdcdocumentation.syniverse.com/index.php/omni-channel/api-reference/explore-api-reference
📖
Documentation
https://sdcdocumentation.syniverse.com/index.php/multi-factor-authentication/getting-started/multi-factor-authentication-overview
📖
APIReference
https://sdcdocumentation.syniverse.com/index.php/multi-factor-authentication/api-reference/explore-api-reference
📖
Documentation
https://sdcdocumentation.syniverse.com/index.php/phone-number-verification/getting-started/phone-number-verification-overview
📖
APIReference
https://sdcdocumentation.syniverse.com/index.php/phone-number-verification/api-reference/explore-pnv-api-reference
📖
Documentation
https://sdcdocumentation.syniverse.com/index.php/right-party-verification/getting-started/right-party-verification-overview
📖
APIReference
https://sdcdocumentation.syniverse.com/index.php/right-party-verification/api-reference/explore-rpv-api-reference
📖
Documentation
https://sdcdocumentation.syniverse.com/index.php/account-takeover-detection/getting-started/account-takeover-detection-overview
📖
APIReference
https://sdcdocumentation.syniverse.com/index.php/account-takeover-detection/api-reference/explore-ato-api-reference
📖
Documentation
https://sdcdocumentation.syniverse.com/index.php/messaging-trust/getting-started/messaging-trust-overview
📖
APIReference
https://sdcdocumentation.syniverse.com/index.php/messaging-trust/api-reference/messaging-trust-api
📖
APIReference
https://sdcdocumentation.syniverse.com/index.php/messaging-trust/api-reference/resolve-api
📖
Documentation
https://sdcdocumentation.syniverse.com/index.php/10-dlc/getting-started/10-dlc-overview
📖
APIReference
https://sdcdocumentation.syniverse.com/index.php/10-dlc/api-reference/api-specification-v23
📖
APIReference
https://sdcdocumentation.syniverse.com/index.php/10-dlc/api-version-1-deprecated/explore-api-reference
📖
APIReference
https://sdcdocumentation.syniverse.com/index.php/developer-community-gateway-services/api-reference/explore-whitelist-api-reference
📖
APIReference
https://sdcdocumentation.syniverse.com/index.php/developer-community-gateway-services/api-reference/explore-token-management-api-reference

Specifications

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/syniverse-reports-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

syniverse-reports-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: MT Spam Datafeed Reports API
  description: Spam reporting API suite
  version: 1.0.0
servers:
- url: https://api.mt1.messaging-trust.syniverse.com/api/v1
security:
- OAuth2: []
tags:
- name: reports
paths:
  /spam/report:
    post:
      tags:
      - reports
      summary: Submit spam reports
      description: Submit a list of spam reports
      requestBody:
        description: List of spam reports
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/endpoint.SpamReportRequest'
        required: true
      responses:
        '202':
          description: Accepted
          headers:
            x-request-id:
              description: example value - 94bf014e-580b-49ba-b86e-c2fc0920204d
              schema:
                type: string
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/endpoint.SpamReportResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/endpoint.SpamReportError'
        '404':
          description: Not Found
          content: {}
        '415':
          description: Unsupported Media Type
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/endpoint.SpamReportError'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/endpoint.SpamReportError'
      x-codegen-request-body-name: reports
components:
  schemas:
    endpoint.SpamReportResponse:
      type: object
      properties:
        batch_id:
          type: string
          example: 588de77e-5055-49f6-91de-441d672a0f9c
        count:
          type: integer
          example: 10
    endpoint.SpamReportRequest:
      required:
      - reports
      type: object
      properties:
        reports:
          type: array
          items:
            $ref: '#/components/schemas/endpoint.Report'
      description: List of spam reports
    endpoint.Report:
      required:
      - message
      - report_id
      - report_ts
      - sender
      - source
      type: object
      properties:
        message:
          type: string
          example: Hello, activate your account at www.hackz.ai today!
        protocol:
          type: string
          example: SMS
        receipt_ts:
          type: string
          example: '2006-01-02T15:04:05.000Z'
        report_id:
          type: string
          example: SPM_RPT_1
        report_ts:
          type: string
          example: '2006-01-02T15:04:05.000Z'
        sender:
          type: string
          example: '+12125551212'
        source:
          type: string
          example: '7727'
      description: Spam report information
    endpoint.SpamReportError:
      type: object
      properties:
        batch_id:
          type: string
          example: 588de77e-5055-49f6-91de-441d672a0f9c
        error:
          type: string
          example: error description
  securitySchemes:
    OAuth2:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://api.mt1.messaging-trust.syniverse.com/oauth2/token
          scopes: {}
x-original-swagger-version: '2.0'