Orbii Tech Ltd Micro Loan API

The Micro Loan API from Orbii Tech Ltd — 1 operation(s) for micro loan.

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-micro-loan-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-micro-loan-api-openapi.yml Raw ↑
openapi: 3.0.0
info:
  title: Orbii API - Foodics Business Category Assignment Micro Loan 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: Micro Loan
paths:
  /Micro_Loan_Loan_Amounts:
    get:
      summary: Get paginated micro loan amounts
      tags:
      - Micro Loan
      parameters:
      - in: query
        name: user
        required: true
        schema:
          type: string
        description: Database username
      - in: query
        name: password
        required: true
        schema:
          type: string
        description: Database password
      - in: query
        name: page
        required: false
        schema:
          type: integer
          minimum: 1
          default: 1
      - in: query
        name: page_size
        required: false
        schema:
          type: integer
          minimum: 1
          default: 1000
      responses:
        '200':
          description: Paginated results
          content:
            application/json:
              schema:
                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
                      properties:
                        BUSINESS_REFERENCE:
                          type: integer
                        BAND:
                          type: string
                        rms_annual_revenue:
                          type: number
                          format: float
                        rms_max_loan_amount:
                          type: number
                          format: float
                        rms_daily_payment_6m:
                          type: number
                          format: float
                        rms_daily_payment_12m:
                          type: number
                          format: float
                        rms_daily_payment_24m:
                          type: number
                          format: float
                        pay_annual_revenue:
                          type: number
                          format: float
                        pay_max_loan_amount:
                          type: number
                          format: float
                        pay_daily_payment_6m:
                          type: number
                          format: float
                        pay_daily_payment_12m:
                          type: number
                          format: float
                        pay_daily_payment_24m:
                          type: number
                          format: float
        '400':
          description: Bad request
        '500':
          description: Server error
    post:
      summary: Recalculate loan amounts and return a paginated page
      tags:
      - Micro Loan
      requestBody:
        required: true
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                user:
                  type: string
                  description: Database username
                password:
                  type: string
                  description: Database password
                page:
                  type: integer
                  minimum: 1
                  default: 1
                page_size:
                  type: integer
                  minimum: 1
                  default: 1000
              required:
              - user
              - password
      responses:
        '200':
          description: Recalculated and paginated results
          content:
            application/json:
              schema:
                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
                      properties:
                        BUSINESS_REFERENCE:
                          type: integer
                        BAND:
                          type: string
                        rms_annual_revenue:
                          type: number
                          format: float
                        rms_max_loan_amount:
                          type: number
                          format: float
                        rms_daily_payment_6m:
                          type: number
                          format: float
                        rms_daily_payment_12m:
                          type: number
                          format: float
                        rms_daily_payment_24m:
                          type: number
                          format: float
                        pay_annual_revenue:
                          type: number
                          format: float
                        pay_max_loan_amount:
                          type: number
                          format: float
                        pay_daily_payment_6m:
                          type: number
                          format: float
                        pay_daily_payment_12m:
                          type: number
                          format: float
                        pay_daily_payment_24m:
                          type: number
                          format: float
        '400':
          description: Bad request
        '500':
          description: Server error