Orbii Tech Ltd Scores and Final Band Classification API

The Scores and Final Band Classification API from Orbii Tech Ltd — 2 operation(s) for scores and final band classification.

Operations 2

GET /Micro_Loan_Final_Band_Classification Get paginated final band classification
GET /Micro_Loan_Final_Band_Classification/Business_Reference Get final band classification for a specific business reference

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-scores-and-final-band-classification-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-scores-and-final-band-classification-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Orbii API - Foodics Business Category Assignment Scores and Final Band Classification 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: Scores and Final Band Classification
paths:
  /Micro_Loan_Final_Band_Classification:
    get:
      summary: Get paginated final band classification
      tags:
      - Scores and Final Band Classification
      parameters:
      - $ref: '#/components/parameters/User'
      - $ref: '#/components/parameters/Password'
      - $ref: '#/components/parameters/Page'
      - $ref: '#/components/parameters/PageSize'
      responses:
        '200':
          description: Paginated final band classification data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedResult'
  /Micro_Loan_Final_Band_Classification/Business_Reference:
    get:
      summary: Get final band classification for a specific business reference
      tags:
      - Scores and Final Band Classification
      parameters:
      - $ref: '#/components/parameters/User'
      - $ref: '#/components/parameters/Password'
      - name: business_reference
        in: query
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: Final band classification data for specified business reference
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
components:
  parameters:
    PageSize:
      name: page_size
      in: query
      required: false
      schema:
        type: integer
        default: 1000
      description: Number of records per page (must be >= 1)
    Page:
      name: page
      in: query
      required: false
      schema:
        type: integer
        default: 1
      description: Page number (must be >= 1)
    User:
      name: user
      in: query
      required: true
      schema:
        type: string
    Password:
      name: password
      in: query
      required: true
      schema:
        type: string
  schemas:
    PaginatedResult:
      type: object
      properties:
        total_records:
          type: integer
        total_pages:
          type: integer
        current_page:
          type: integer
        page_size:
          type: integer
        data:
          type: array
          items:
            type: object