Orbii Tech Ltd Raw Numbers API

The Raw Numbers API from Orbii Tech Ltd — 6 operation(s) for raw numbers.

Operations 6

GET /Micro_Loan_Baseline_Eligibility_Raw Get paginated baseline eligibility raw numbers
GET /Micro_Loan_Business_Stability_And_Risk_Raw Get paginated business stability and risk raw numbers
GET /Micro_Loan_Industry_And_Seasonal_Trends_Raw Get paginated industry and seasonal trends raw numbers
GET /Micro_Loan_Payment_Processing_And_Liquidity_Raw Get paginated payment processing and liquidity raw numbers
GET /Micro_Loan_Revenue_And_Sales_Performance_Raw Get paginated revenue and sales performance raw numbers
GET /Micro_Loan_Raw_Numbers/Business_Reference Get KPI raw and text data 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-raw-numbers-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-raw-numbers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Orbii API - Foodics Business Category Assignment Raw Numbers 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: Raw Numbers
paths:
  /Micro_Loan_Baseline_Eligibility_Raw:
    get:
      summary: Get paginated baseline eligibility raw numbers
      tags:
      - Raw Numbers
      parameters:
      - $ref: '#/components/parameters/User'
      - $ref: '#/components/parameters/Password'
      - $ref: '#/components/parameters/Page'
      - $ref: '#/components/parameters/PageSize'
      responses:
        '200':
          description: Paginated baseline eligibility data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedResult'
  /Micro_Loan_Business_Stability_And_Risk_Raw:
    get:
      summary: Get paginated business stability and risk raw numbers
      tags:
      - Raw Numbers
      parameters:
      - $ref: '#/components/parameters/User'
      - $ref: '#/components/parameters/Password'
      - $ref: '#/components/parameters/Page'
      - $ref: '#/components/parameters/PageSize'
      responses:
        '200':
          description: Paginated business stability and risk data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedResult'
  /Micro_Loan_Industry_And_Seasonal_Trends_Raw:
    get:
      summary: Get paginated industry and seasonal trends raw numbers
      tags:
      - Raw Numbers
      parameters:
      - $ref: '#/components/parameters/User'
      - $ref: '#/components/parameters/Password'
      - $ref: '#/components/parameters/Page'
      - $ref: '#/components/parameters/PageSize'
      responses:
        '200':
          description: Paginated industry and seasonal trends data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedResult'
  /Micro_Loan_Payment_Processing_And_Liquidity_Raw:
    get:
      summary: Get paginated payment processing and liquidity raw numbers
      tags:
      - Raw Numbers
      parameters:
      - $ref: '#/components/parameters/User'
      - $ref: '#/components/parameters/Password'
      - $ref: '#/components/parameters/Page'
      - $ref: '#/components/parameters/PageSize'
      responses:
        '200':
          description: Paginated payment processing and liquidity data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedResult'
  /Micro_Loan_Revenue_And_Sales_Performance_Raw:
    get:
      summary: Get paginated revenue and sales performance raw numbers
      tags:
      - Raw Numbers
      parameters:
      - $ref: '#/components/parameters/User'
      - $ref: '#/components/parameters/Password'
      - $ref: '#/components/parameters/Page'
      - $ref: '#/components/parameters/PageSize'
      responses:
        '200':
          description: Paginated revenue and sales performance data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedResult'
  /Micro_Loan_Raw_Numbers/Business_Reference:
    get:
      summary: Get KPI raw and text data for a specific business reference
      tags:
      - Raw Numbers
      parameters:
      - $ref: '#/components/parameters/User'
      - $ref: '#/components/parameters/Password'
      - name: business_reference
        in: query
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: KPI 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