Alleva Snapshot API

The Snapshot API from Alleva — 8 operation(s) for snapshot.

Operations 8

GET /snapshots/{snapshotType}/{snapshotId} Get snapshots by snapshot type by snapshot id #
GET /v{version}/snapshots/{snapshotType}/{snapshotId} Get v{version} snapshots by snapshot type by snapshot id #
POST /snapshots/{snapshotType} Create snapshots by snapshot type #
POST /v{version}/snapshots/{snapshotType} Create v{version} snapshots by snapshot type #
GET /snapshots Get snapshots #
GET /v{version}/snapshots Get v{version} snapshots #
GET /snapshots/{id} Get snapshots by id #
GET /v{version}/snapshots/{id} Get v{version} snapshots by id #

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/alleva-snapshot-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

alleva-snapshot-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Alleva Rest Snapshot API
  version: '1.0'
security:
- Bearer: []
tags:
- name: Snapshot
paths:
  /snapshots/{snapshotType}/{snapshotId}:
    get:
      tags:
      - Snapshot
      parameters:
      - name: snapshotType
        in: path
        required: true
        schema:
          $ref: '#/components/schemas/SnapshotType'
      - name: snapshotId
        in: path
        required: true
        schema:
          type: integer
          format: int32
      - name: api-version
        in: query
        schema:
          type: string
      - name: X-Version
        in: header
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            text/plain; ver=1.0:
              schema:
                $ref: '#/components/schemas/Snapshot'
            application/json; ver=1.0:
              schema:
                $ref: '#/components/schemas/Snapshot'
            text/json; ver=1.0:
              schema:
                $ref: '#/components/schemas/Snapshot'
      summary: Get snapshots by snapshot type by snapshot id
      x-summary-source: derived
      operationId: getSnapshotsBySnapshotTypeBySnapshotId
      x-operation-id-source: derived
  /v{version}/snapshots/{snapshotType}/{snapshotId}:
    get:
      tags:
      - Snapshot
      parameters:
      - name: snapshotType
        in: path
        required: true
        schema:
          $ref: '#/components/schemas/SnapshotType'
      - name: snapshotId
        in: path
        required: true
        schema:
          type: integer
          format: int32
      - name: version
        in: path
        required: true
        schema:
          type: string
      - name: api-version
        in: query
        schema:
          type: string
      - name: X-Version
        in: header
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            text/plain; ver=1.0:
              schema:
                $ref: '#/components/schemas/Snapshot'
            application/json; ver=1.0:
              schema:
                $ref: '#/components/schemas/Snapshot'
            text/json; ver=1.0:
              schema:
                $ref: '#/components/schemas/Snapshot'
      summary: Get v{version} snapshots by snapshot type by snapshot id
      x-summary-source: derived
      operationId: getV{version}SnapshotsBySnapshotTypeBySnapshotId
      x-operation-id-source: derived
  /snapshots/{snapshotType}:
    post:
      tags:
      - Snapshot
      parameters:
      - name: snapshotType
        in: path
        required: true
        schema:
          $ref: '#/components/schemas/SnapshotType'
      - name: api-version
        in: query
        schema:
          type: string
      - name: X-Version
        in: header
        schema:
          type: string
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                ContentType:
                  type: string
                ContentDisposition:
                  type: string
                Headers:
                  type: object
                  additionalProperties:
                    type: array
                    items:
                      type: string
                Length:
                  type: integer
                  format: int64
                Name:
                  type: string
                FileName:
                  type: string
                leadId:
                  type: integer
                  format: int64
            encoding:
              ContentType:
                style: form
              ContentDisposition:
                style: form
              Headers:
                style: form
              Length:
                style: form
              Name:
                style: form
              FileName:
                style: form
              leadId:
                style: form
      responses:
        '200':
          description: Success
          content:
            text/plain; ver=1.0:
              schema:
                $ref: '#/components/schemas/CreateResult'
            application/json; ver=1.0:
              schema:
                $ref: '#/components/schemas/CreateResult'
            text/json; ver=1.0:
              schema:
                $ref: '#/components/schemas/CreateResult'
      summary: Create snapshots by snapshot type
      x-summary-source: derived
      operationId: postSnapshotsBySnapshotType
      x-operation-id-source: derived
  /v{version}/snapshots/{snapshotType}:
    post:
      tags:
      - Snapshot
      parameters:
      - name: snapshotType
        in: path
        required: true
        schema:
          $ref: '#/components/schemas/SnapshotType'
      - name: version
        in: path
        required: true
        schema:
          type: string
      - name: api-version
        in: query
        schema:
          type: string
      - name: X-Version
        in: header
        schema:
          type: string
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                ContentType:
                  type: string
                ContentDisposition:
                  type: string
                Headers:
                  type: object
                  additionalProperties:
                    type: array
                    items:
                      type: string
                Length:
                  type: integer
                  format: int64
                Name:
                  type: string
                FileName:
                  type: string
                leadId:
                  type: integer
                  format: int64
            encoding:
              ContentType:
                style: form
              ContentDisposition:
                style: form
              Headers:
                style: form
              Length:
                style: form
              Name:
                style: form
              FileName:
                style: form
              leadId:
                style: form
      responses:
        '200':
          description: Success
          content:
            text/plain; ver=1.0:
              schema:
                $ref: '#/components/schemas/CreateResult'
            application/json; ver=1.0:
              schema:
                $ref: '#/components/schemas/CreateResult'
            text/json; ver=1.0:
              schema:
                $ref: '#/components/schemas/CreateResult'
      summary: Create v{version} snapshots by snapshot type
      x-summary-source: derived
      operationId: postV{version}SnapshotsBySnapshotType
      x-operation-id-source: derived
  /snapshots:
    get:
      tags:
      - Snapshot
      parameters:
      - name: Limit
        in: query
        schema:
          type: integer
          format: int64
      - name: Cursor
        in: query
        schema:
          type: integer
          format: int32
      - name: StartDate
        in: query
        schema:
          type: string
          format: date-time
      - name: EndDate
        in: query
        schema:
          type: string
          format: date-time
      - name: fields
        in: query
        schema:
          type: array
          items:
            type: string
      - name: api-version
        in: query
        schema:
          type: string
      - name: X-Version
        in: header
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            text/plain; ver=1.0:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Snapshot'
            application/json; ver=1.0:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Snapshot'
            text/json; ver=1.0:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Snapshot'
      summary: Get snapshots
      x-summary-source: derived
      operationId: getSnapshots
      x-operation-id-source: derived
  /v{version}/snapshots:
    get:
      tags:
      - Snapshot
      parameters:
      - name: Limit
        in: query
        schema:
          type: integer
          format: int64
      - name: Cursor
        in: query
        schema:
          type: integer
          format: int32
      - name: StartDate
        in: query
        schema:
          type: string
          format: date-time
      - name: EndDate
        in: query
        schema:
          type: string
          format: date-time
      - name: fields
        in: query
        schema:
          type: array
          items:
            type: string
      - name: version
        in: path
        required: true
        schema:
          type: string
      - name: api-version
        in: query
        schema:
          type: string
      - name: X-Version
        in: header
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            text/plain; ver=1.0:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Snapshot'
            application/json; ver=1.0:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Snapshot'
            text/json; ver=1.0:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Snapshot'
      summary: Get v{version} snapshots
      x-summary-source: derived
      operationId: getV{version}Snapshots
      x-operation-id-source: derived
  /snapshots/{id}:
    get:
      tags:
      - Snapshot
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
          format: int64
      - name: api-version
        in: query
        schema:
          type: string
      - name: X-Version
        in: header
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            text/plain; ver=1.0:
              schema:
                $ref: '#/components/schemas/Snapshot'
            application/json; ver=1.0:
              schema:
                $ref: '#/components/schemas/Snapshot'
            text/json; ver=1.0:
              schema:
                $ref: '#/components/schemas/Snapshot'
      summary: Get snapshots by id
      x-summary-source: derived
      operationId: getSnapshotsById
      x-operation-id-source: derived
  /v{version}/snapshots/{id}:
    get:
      tags:
      - Snapshot
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
          format: int64
      - name: version
        in: path
        required: true
        schema:
          type: string
      - name: api-version
        in: query
        schema:
          type: string
      - name: X-Version
        in: header
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            text/plain; ver=1.0:
              schema:
                $ref: '#/components/schemas/Snapshot'
            application/json; ver=1.0:
              schema:
                $ref: '#/components/schemas/Snapshot'
            text/json; ver=1.0:
              schema:
                $ref: '#/components/schemas/Snapshot'
      summary: Get v{version} snapshots by id
      x-summary-source: derived
      operationId: getV{version}SnapshotsById
      x-operation-id-source: derived
components:
  schemas:
    CreateOperationResult:
      enum:
      - 0
      - 1
      - 2
      - 3
      type: integer
      format: int32
    CreateResult:
      type: object
      properties:
        operationResult:
          $ref: '#/components/schemas/CreateOperationResult'
        id:
          type:
          - integer
          - 'null'
          format: int64
        messages:
          type:
          - array
          - 'null'
          items:
            type: string
        reason:
          type:
          - string
          - 'null'
      additionalProperties: false
    SnapshotType:
      enum:
      - 1346
      - 1347
      - 1348
      - 1349
      - 1389
      - 1431
      - 1521
      type: integer
      format: int32
    Snapshot:
      type: object
      properties:
        id:
          type: integer
          format: int32
        href:
          type:
          - string
          - 'null'
          readOnly: true
        createdBy:
          type: integer
          format: int32
        createdDate:
          type: string
          format: date-time
        generatedFileName:
          type:
          - string
          - 'null'
        intakeType:
          type: integer
          format: int32
        isDeleted:
          type: boolean
        leadId:
          type: integer
          format: int64
      additionalProperties: false
  securitySchemes:
    Bearer:
      type: apiKey
      description: "JWT Authorization header using the Bearer scheme. \n\n Enter Bearer [space] and then your token in the text input below.\n\nExample: Bearer 12345abcdef"
      name: Authorization
      in: header