Orbii Tech Ltd Zipped Csv Upload API

The Zipped Csv Upload API from Orbii Tech Ltd — 1 operation(s) for zipped csv upload.

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/orbii-tech-ltd-zipped-csv-upload-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

orbii-tech-ltd-zipped-csv-upload-api-openapi.yml Raw ↑
openapi: 3.0.0
info:
  title: Orbii API - Foodics Business Category Assignment Zipped Csv Upload API
  version: 1.0.2
  description: API for retrieving micro loan KPIs, scoring, risk assessment, band classification, and related data.
servers:
- url: https://api.foodics.orbii.ai/
  description: Production Server
tags:
- name: Zipped Csv Upload
paths:
  /zipped-csv-upload:
    post:
      summary: Upload ZIP file(s) to secure storage
      description: 'Accepts one or more `.zip` files and uploads each ZIP.

        '
      operationId: zippedCsvUpload
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              type: object
              required:
              - files
              properties:
                files:
                  type: array
                  description: One or more `.zip` files to upload (each stored as-is)
                  items:
                    type: string
                    format: binary
            encoding:
              files:
                contentType: application/zip
      responses:
        '200':
          description: ZIP file(s) uploaded successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: ZIP file(s) uploaded successfully.
                  container:
                    type: string
                    example: rewaa
                  uploaded_files:
                    type: array
                    items:
                      type: string
                    example:
                    - merchant_payment_transactions.zip
                    - merchant_sales_transactions.zip
        '400':
          description: Bad request (no files, invalid ZIP, wrong extension)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Server error (container creation or upload failure)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      tags:
      - Zipped Csv Upload
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: string
      example:
        error: Missing 'user' or 'password' query parameters