Orbii Tech Ltd KPIs API
The KPIs API from Orbii Tech Ltd — 6 operation(s) for kpis.
The KPIs API from Orbii Tech Ltd — 6 operation(s) for kpis.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/orbii-tech-ltd-kpis-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
title: Orbii API - Foodics Business Category Assignment KP Is 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: KPIs
paths:
/client-kpis/customer/{customer_id}:
get:
summary: Retrieve client KPIs for a specific customer ID
description: Returns the latest KPI values for the given customer ID.
tags:
- KPIs
parameters:
- name: customer_id
in: path
description: The unique identifier of the customer
required: true
schema:
type: string
- name: user
in: query
description: Database user name
required: false
schema:
type: string
default: DB_USER
- name: password
in: query
description: Database user password
required: false
schema:
type: string
default: DB_PASSWORD
responses:
'200':
description: A list of KPIs for the specified customer ID
content:
application/json:
schema:
type: array
items:
type: object
properties:
borrower_name:
type: string
customer_id:
type: string
kpi:
type: string
value:
type: number
format: float
year:
type: integer
month:
type: integer
'400':
description: Bad request - missing or invalid parameters
'500':
description: Internal server error
/predictive-kpis/customer/{customer_id}:
get:
summary: Retrieve predictive KPIs for a specific customer ID
description: Returns the latest predictive KPI values for the given customer ID.
tags:
- KPIs
parameters:
- name: customer_id
in: path
description: The unique identifier of the customer
required: true
schema:
type: string
- name: user
in: query
description: Database user name
required: false
schema:
type: string
default: DB_USER
- name: password
in: query
description: Database user password
required: false
schema:
type: string
default: DB_PASSWORD
responses:
'200':
description: A list of predictive KPIs for the specified customer ID
content:
application/json:
schema:
type: array
items:
type: object
properties:
borrower_name:
type: string
customer_id:
type: string
year:
type: integer
month:
type: integer
predicted_revenue:
type: number
format: float
predicted_expenses:
type: number
format: float
predicted_transfers:
type: number
format: float
predicted_essentials:
type: number
format: float
predicted_non_essentials:
type: number
format: float
predicted_profit:
type: number
format: float
'400':
description: Bad request - missing or invalid parameters
'500':
description: Internal server error
/client-kpis:
get:
summary: Get KPIs for all clients
description: Retrieves KPIs and their values for all clients, along with the year and month.
tags:
- KPIs
parameters:
- name: user
in: query
description: Database user name
required: false
schema:
type: string
default: DB_USER
- name: password
in: query
description: Database user password
required: false
schema:
type: string
default: DB_PASSWORD
responses:
'200':
description: Successful response
content:
application/json:
schema:
type: array
items:
type: object
properties:
client_name:
type: string
description: The name of the client
kpi:
type: string
description: The KPI being measured
value:
type: number
description: The value of the KPI
format: float
year:
type: integer
description: The year associated with the KPI
month:
type: integer
description: The month associated with the KPI
/client-kpis/{clientname}:
get:
summary: Get KPIs for a specific client
description: Retrieves KPIs for a specific client, along with the year and month information.
tags:
- KPIs
parameters:
- name: clientname
in: path
description: The name of the client to retrieve KPIs for
required: true
schema:
type: string
- name: user
in: query
description: Database user name
required: false
schema:
type: string
default: DB_USER
- name: password
in: query
description: Database user password
required: false
schema:
type: string
default: DB_PASSWORD
responses:
'200':
description: Successful response
content:
application/json:
schema:
type: array
items:
type: object
properties:
client_name:
type: string
description: The name of the client
kpi:
type: string
description: The KPI being measured
value:
type: number
description: The value of the KPI
format: float
year:
type: integer
description: The year associated with the KPI
month:
type: integer
description: The month associated with the KPI
/predictive-kpis:
get:
summary: Get predictive KPIs for all clients
description: Retrieves predictive KPIs for all clients.
tags:
- KPIs
parameters:
- name: user
in: query
required: false
schema:
type: string
- name: password
in: query
required: false
schema:
type: string
responses:
'200':
description: Successful response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/PredictiveKPI'
/predictive-kpis/{clientname}:
get:
summary: Get predictive KPIs for a specific client
description: Retrieves predictive KPIs for a specific client.
tags:
- KPIs
parameters:
- name: clientname
in: path
required: true
schema:
type: string
- name: user
in: query
required: false
schema:
type: string
- name: password
in: query
required: false
schema:
type: string
responses:
'200':
description: Successful response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/PredictiveKPI'
components:
schemas:
PredictiveKPI:
type: object
properties:
client_name:
type: string
year:
type: integer
month:
type: integer
predicted_revenue:
type: number
predicted_expenses:
type: number
predicted_transfers:
type: number
predicted_essentials:
type: number
predicted_non_essentials:
type: number
predicted_profit:
type: number