Sendspark Workspace API

The Workspace API from Sendspark — 2 operation(s) for workspace.

Operations 2

GET /v1/workspaces Get the list of the current users workspaces #
GET /v1/workspaces/identifier Get workspace id by api key #

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/sendspark-workspace-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

sendspark-workspace-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Sendspark DVM Bundles Workspace API
  version: 1.2.0
  description: Public Sendspark API. DRAFT scaffold generated from the internal API v2 spec — endpoint selection and authentication are pending engineering review before publishing.
servers:
- url: https://api-gw.sendspark.com
  description: Production
security:
- apiKey: []
  apiSecret: []
tags:
- name: Workspace
paths:
  /v1/workspaces:
    get:
      summary: Get the list of the current users workspaces
      operationId: getWorkspaces
      description: Get the list of the current users workspaces
      parameters:
      - name: dropdownRendering
        in: query
        required: false
        schema:
          type: boolean
      tags:
      - Workspace
      responses:
        '200':
          description: Successful
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/WorspacesResponseSchema'
  /v1/workspaces/identifier:
    get:
      summary: Get workspace id by api key
      operationId: getWorkspaceByApiKey
      description: Get workspace id by api key
      tags:
      - Workspace
      responses:
        '200':
          description: Successful
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/GetWorkspaceIdByApiKeyResponseSchema'
        '400':
          description: Bad Request
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/BadRequest'
        '404':
          description: Not Found
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ResourceNotFoundOrInvalidAccess'
components:
  schemas:
    Workspaces:
      type: array
      items:
        $ref: '#/components/schemas/WorkspaceResponseSchemadropdownRendering'
    GetWorkspaceIdByApiKeyResponseSchema:
      type: object
      properties:
        workspaceId:
          type: string
          example: 7voa5y6qjj04kkbfqbgjd7kdvxlf4gqo
      required:
      - workspaceId
    BadRequest:
      type: object
      properties:
        statusCode:
          type: number
          example: 400
        code:
          type: string
          example: S400-AHVE
        error:
          type: string
          example: Bad Request
        message:
          type: string
          example: Invalid request payload input
    WorkspaceResponseSchemadropdownRendering:
      type: object
      properties:
        _id:
          type: string
        name:
          type: string
      required:
      - _id
      - name
    ResourceNotFoundOrInvalidAccess:
      type: object
      properties:
        statusCode:
          type: number
          example: 404
        error:
          type: string
          example: Not Found
        message:
          type: string
          example: Resource not found or invalid access
    WorspacesResponseSchema:
      type: object
      properties:
        workspaces:
          $ref: '#/components/schemas/Workspaces'
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
    apiSecret:
      type: apiKey
      in: header
      name: x-api-secret