Rapidata BatchUpload API

The BatchUpload API from Rapidata — 4 operation(s) for batchupload.

Operations 4

POST /asset/batch-upload/{batchUploadId}/abort Aborts the specified batch upload.
POST /asset/batch-upload Creates a batch upload and queues processing for each URL.
GET /asset/batch-upload/{batchUploadId} Gets the full result of a batch upload including all items.
GET /asset/batch-upload/status Gets aggregated status for batch uploads identified by IDs or a correlation 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/rapidata-batchupload-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

rapidata-batchupload-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Rapidata Asset Batch Upload API
  description: The API for the Rapidata Asset service
  version: v1
servers:
- url: https://api.rapidata.ai/
tags:
- name: BatchUpload
  x-displayName: BatchUpload
paths:
  /asset/batch-upload/{batchUploadId}/abort:
    post:
      tags:
      - BatchUpload
      summary: Aborts the specified batch upload.
      description: URLs already processed will not be reverted. Only remaining URLs are prevented from processing.
      parameters:
      - name: batchUploadId
        in: path
        description: The identifier of the batch upload to abort.
        required: true
        schema:
          type: string
      responses:
        '204':
          description: No Content
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationProblemDetails'
        '401':
          description: Unauthenticated
        '403':
          description: Forbidden
      security:
      - OpenIdConnect:
        - openid
        - profile
        - email
        - offline_access
  /asset/batch-upload:
    post:
      tags:
      - BatchUpload
      summary: Creates a batch upload and queues processing for each URL.
      description: Each URL is processed asynchronously. Use the batch upload status or result endpoints to track progress.
      requestBody:
        description: The list of URLs to include in the batch upload.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateBatchUploadEndpoint_Input'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateBatchUploadEndpoint_Output'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationProblemDetails'
        '401':
          description: Unauthenticated
        '403':
          description: Forbidden
      security:
      - OpenIdConnect:
        - openid
        - profile
        - email
        - offline_access
  /asset/batch-upload/{batchUploadId}:
    get:
      tags:
      - BatchUpload
      summary: Gets the full result of a batch upload including all items.
      parameters:
      - name: batchUploadId
        in: path
        description: The identifier of the batch upload to retrieve.
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetBatchUploadResultEndpoint_Output'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationProblemDetails'
        '401':
          description: Unauthenticated
        '403':
          description: Forbidden
      security:
      - OpenIdConnect:
        - openid
        - profile
        - email
        - offline_access
  /asset/batch-upload/status:
    get:
      tags:
      - BatchUpload
      summary: Gets aggregated status for batch uploads identified by IDs or a correlation ID.
      parameters:
      - name: batchUploadIds
        in: query
        description: The identifiers of the batch uploads to query.
        schema:
          type: array
          items:
            type: string
      - name: correlationId
        in: query
        description: A client-supplied identifier to look up related batch uploads.
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetBatchUploadStatusEndpoint_Output'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationProblemDetails'
        '401':
          description: Unauthenticated
        '403':
          description: Forbidden
      security:
      - OpenIdConnect:
        - openid
        - profile
        - email
        - offline_access
components:
  schemas:
    CreateBatchUploadEndpoint_Input:
      required:
      - urls
      type: object
      properties:
        urls:
          allOf:
          - type: array
            items:
              type: string
              format: uri
          description: The URLs to download and process.
        correlationId:
          type:
          - string
          - 'null'
          description: Optional client-supplied identifier to group related batch uploads.
        compression:
          allOf:
          - $ref: '#/components/schemas/CompressionOverride'
          description: "Optional per-call override for image compression applied to every URL in the batch.\n Null means use the configured defaults."
    CreateBatchUploadEndpoint_Output:
      required:
      - batchUploadId
      type: object
      properties:
        batchUploadId:
          type: string
          description: The identifier of the created batch upload.
    GetBatchUploadResultEndpoint_Output:
      required:
      - batchUploadId
      - status
      - totalCount
      - completedCount
      - failedCount
      - items
      type: object
      properties:
        batchUploadId:
          type: string
          description: The identifier of the batch upload.
        status:
          allOf:
          - $ref: '#/components/schemas/BatchUploadStatus'
          description: The current status of the batch upload.
        totalCount:
          type: integer
          description: The total number of URLs in the batch.
          format: int32
        completedCount:
          type: integer
          description: The number of URLs that have been successfully processed.
          format: int32
        failedCount:
          type: integer
          description: The number of URLs that failed to process.
          format: int32
        items:
          allOf:
          - type: array
            items:
              $ref: '#/components/schemas/GetBatchUploadResultEndpoint_UrlOutput'
          description: The individual results for each URL in the batch.
    CompressionOverride:
      type: object
      properties:
        enabled:
          type:
          - boolean
          - 'null'
        quality:
          type:
          - integer
          - 'null'
          format: int32
        maxDimension:
          type:
          - integer
          - 'null'
          format: int32
    ValidationProblemDetails:
      type: object
      properties:
        type:
          type:
          - string
          - 'null'
        title:
          type:
          - string
          - 'null'
        status:
          type:
          - integer
          - 'null'
          format: int32
        detail:
          type:
          - string
          - 'null'
        instance:
          type:
          - string
          - 'null'
        errors:
          type: object
          additionalProperties:
            type: array
            items:
              type: string
    BatchUploadUrlStatus:
      enum:
      - Pending
      - Completed
      - Failed
    GetBatchUploadResultEndpoint_UrlOutput:
      required:
      - url
      - status
      type: object
      properties:
        url:
          type: string
        fileName:
          type:
          - string
          - 'null'
        status:
          $ref: '#/components/schemas/BatchUploadUrlStatus'
        errorMessage:
          type:
          - string
          - 'null'
    GetBatchUploadStatusEndpoint_Output:
      required:
      - status
      - totalCount
      - completedCount
      - failedCount
      - completedBatches
      type: object
      properties:
        status:
          allOf:
          - $ref: '#/components/schemas/BatchUploadStatus'
          description: The aggregated status across all queried batch uploads.
        totalCount:
          type: integer
          description: The total number of URLs across all queried batches.
          format: int32
        completedCount:
          type: integer
          description: The number of URLs that have been successfully processed.
          format: int32
        failedCount:
          type: integer
          description: The number of URLs that failed to process.
          format: int32
        completedBatches:
          allOf:
          - type: array
            items:
              type: string
          description: The identifiers of batch uploads that have fully completed.
    BatchUploadStatus:
      enum:
      - Processing
      - Completed
      - Aborted
  securitySchemes:
    OpenIdConnect:
      type: openIdConnect
      description: OpenID Connect connection flow
      openIdConnectUrl: https://auth.rapidata.ai/.well-known/openid-configuration
x-tagGroups:
- name: Rapidata Asset API
  tags:
  - Asset
  - BatchUpload
- name: Rapidata Audience API
  tags:
  - Audience
  - Examples
- name: Rapidata Campaign API
  tags:
  - Cache
  - Campaign
  - ExternalAudience
- name: Rapidata Dataset API
  tags:
  - ContextShortening
  - Datapoints
  - Dataset
  - DatasetGroup
- name: Rapidata Flow API
  tags:
  - Flow
  - FlowItem
  - RankingFlow
  - RankingFlowItem
- name: Rapidata Identity API
  tags:
  - Rapidata.Identity.API
  - Client
  - Customer
  - Identity
  - Newsletter
  - Organization
  - Survey
- name: Rapidata Leaderboard API
  tags:
  - Benchmark
  - SampleGeneration
  - Faucet
  - Replicate
  - Leaderboard
  - Participant
  - Prompt
  - Sample
- name: Rapidata Order API
  tags:
  - Feedback
  - Job
  - Order
- name: Rapidata Payment API
  tags:
  - Billing
  - ExternalServicePrices
  - Reconciliation
  - Settings
  - VolumeDiscount
  - BillingAccount
  - Invoice
  - Payment
- name: Rapidata Pipeline API
  tags:
  - Pipeline
- name: Rapidata Rapid API
  tags:
  - CustomerRapid
  - GlobalText
  - Rapid
  - UserRapid
  - ValidationFeedback
- name: Rapidata Signal API
  tags:
  - Signal
- name: Rapidata Translation API
  tags:
  - Translation
- name: Rapidata Validation API
  tags:
  - ValidationSet
- name: Rapidata Workflow API
  tags:
  - Evaluation
  - GroupedRanking
  - Ranking
  - SimpleWorkflow
  - Workflow