Osmaura Prospect Editions API

The Prospect Editions API from Osmaura — 1 operation(s) for prospect editions.

Operations 1

GET /v2/prospect-editions List published prospect-edition history #

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/osmaura-prospect-editions-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

osmaura-prospect-editions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Osmaura Prospect Prospect Editions API
  version: 2.0.0
  description: Retrieve tenant-scoped, human-reviewed prospect editions. Version 2 keeps source-backed data separate from analyst conclusions and includes source coverage, official links, and reproducible record locators. Only explicitly published editions are visible.
servers:
- url: https://dashboard.osmaura.com
security:
- bearerAuth: []
tags:
- name: Prospect Editions
paths:
  /v2/prospect-editions:
    get:
      operationId: listProspectEditions
      summary: List published prospect-edition history
      parameters:
      - $ref: '#/components/parameters/EditionLimit'
      responses:
        '200':
          description: Published editions, newest first.
          content:
            application/json:
              schema:
                type: object
                additionalProperties: false
                required:
                - editions
                properties:
                  editions:
                    type: array
                    items:
                      $ref: '#/components/schemas/EditionSummary'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '402':
          $ref: '#/components/responses/SubscriptionRequired'
        '503':
          $ref: '#/components/responses/Unavailable'
      tags:
      - Prospect Editions
components:
  responses:
    Unauthorized:
      description: Missing, invalid, or revoked API key.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    SubscriptionRequired:
      description: An active organization subscription is required.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Unavailable:
      description: Account-access verification is temporarily unavailable.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  schemas:
    EditionSummary:
      type: object
      additionalProperties: false
      required:
      - edition_date
      - published_at
      - revision
      - count
      properties:
        edition_date:
          type: string
          format: date
        published_at:
          type: string
          format: date-time
        revision:
          type: integer
          minimum: 1
        count:
          type: integer
          minimum: 1
          maximum: 100
    Error:
      type: object
      additionalProperties: false
      required:
      - error
      properties:
        error:
          type: object
          additionalProperties: false
          required:
          - code
          - message
          properties:
            code:
              type: string
            message:
              type: string
  parameters:
    EditionLimit:
      name: limit
      in: query
      required: false
      schema:
        type: integer
        minimum: 1
        maximum: 90
        default: 30
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API key
      description: Tenant-scoped production read key.