Orbii Tech Ltd Business Category Assignment API

The Business Category Assignment API from Orbii Tech Ltd — 1 operation(s) for business category assignment.

Operations 2

GET /assign-category Get business categories with their subcategories
POST /assign-category Submit customer business category

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-business-category-assignment-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

orbii-tech-ltd-business-category-assignment-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Orbii API - Foodics Business Category Assignment 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: Business Category Assignment
paths:
  /assign-category:
    get:
      summary: Get business categories with their subcategories
      description: Returns a JSON object mapping each business category to a list of its subcategories.
      tags:
      - Business Category Assignment
      parameters:
      - name: user
        in: query
        required: true
        schema:
          type: string
        description: Username for SQL authentication
      - name: password
        in: query
        required: true
        schema:
          type: string
        description: Password for SQL authentication
      responses:
        '200':
          description: A JSON object containing categories and their subcategories
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: array
                  items:
                    type: string
              example:
                Accommodation:
                - Hotels and Resorts
                - Bed and Breakfasts
                - Campgrounds
                Agriculture:
                - Crop Production
                - Animal Farming
                - Aquaculture
        '400':
          description: Missing required parameters
        '500':
          description: Server error or database access error
    post:
      summary: Submit customer business category
      description: 'Stores or updates the selected business category and subcategory for the specified customer ID in the [Reporting].[CustomerBusinessCategory] table. Requires SQL credentials as form fields.

        '
      tags:
      - Business Category Assignment
      requestBody:
        required: true
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              required:
              - user
              - password
              - customer_id
              - category_name
              properties:
                user:
                  type: string
                  description: Database username
                password:
                  type: string
                  description: Database password
                customer_id:
                  type: string
                  description: Unique identifier for the customer
                  example: 43d027ff-e6cc-4f77-ab7a-1a8f34259035
                category_name:
                  type: string
                  description: Business category (from the `business_categories` table)
                  example: Automotive
                subcategory_name:
                  type: string
                  description: Business subcategory (from the `business_subcategories` table)
                  example: Auto Dealerships
      responses:
        '200':
          description: Category saved or updated successfully
          content:
            text/plain:
              schema:
                type: string
                example: Business category saved for customer 43d027ff-e6cc-4f77-ab7a-1a8f34259035
        '400':
          description: Missing required form fields
        '500':
          description: Database connection or execution error