Orbii Tech Ltd Rewaa Loan Amounts API

The Rewaa Loan Amounts API from Orbii Tech Ltd — 1 operation(s) for rewaa loan amounts.

Operations 2

GET /Rewaa_Loan_Amounts Loan Amounts #
POST /Rewaa_Loan_Amounts Rebuild Loan Amounts and return a paged page #

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-rewaa-loan-amounts-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-rewaa-loan-amounts-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Orbii API - Foodics Business Category Assignment Rewaa Loan Amounts 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: Rewaa Loan Amounts
paths:
  /Rewaa_Loan_Amounts:
    get:
      summary: Loan Amounts
      operationId: getRewaaLoanAmounts
      parameters:
      - $ref: '#/components/parameters/UserQ'
      - $ref: '#/components/parameters/PasswordQ'
      - $ref: '#/components/parameters/PageQ'
      - $ref: '#/components/parameters/PageSizeQ'
      - in: query
        name: schema_name
        schema:
          type: string
        description: Optional exact filter by schema_name
      responses:
        '200':
          description: Paged loan amounts
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PagedLoanAmounts'
        '400':
          $ref: '#/components/responses/BadRequest'
        '500':
          $ref: '#/components/responses/InternalError'
      tags:
      - Rewaa Loan Amounts
    post:
      summary: Rebuild Loan Amounts and return a paged page
      operationId: rebuildRewaaLoanAmounts
      requestBody:
        required: true
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              required:
              - user
              - password
              properties:
                user:
                  type: string
                password:
                  type: string
                page:
                  type: integer
                  minimum: 1
                  default: 1
                page_size:
                  type: integer
                  minimum: 1
                  default: 1000
      responses:
        '200':
          description: Paged loan amounts after rebuild
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PagedLoanAmounts'
        '400':
          $ref: '#/components/responses/BadRequest'
        '500':
          $ref: '#/components/responses/InternalError'
      tags:
      - Rewaa Loan Amounts
components:
  schemas:
    LoanAmountsRow:
      type: object
      properties:
        schema_name:
          type: string
        Band:
          type: string
        Annual_Revenue_SAR_Last_12:
          type: number
          format: double
        Max_Loan_Amount_SAR:
          type: number
          format: double
        Daily_Payment_6m_SAR:
          type: number
          format: double
        Daily_Payment_12m_SAR:
          type: number
          format: double
        Daily_Payment_24m_SAR:
          type: number
          format: double
    PagedLoanAmounts:
      allOf:
      - $ref: '#/components/schemas/PageEnvelope'
      - type: object
        properties:
          data:
            type: array
            items:
              $ref: '#/components/schemas/LoanAmountsRow'
    PageEnvelope:
      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
    Error:
      type: object
      properties:
        error:
          type: string
      example:
        error: Missing 'user' or 'password' query parameters
  parameters:
    PageSizeQ:
      in: query
      name: page_size
      required: false
      schema:
        type: integer
        minimum: 1
        default: 1000
      description: Page size
    UserQ:
      in: query
      name: user
      required: true
      schema:
        type: string
      description: Database username (also used to derive container for some endpoints)
    PasswordQ:
      in: query
      name: password
      required: true
      schema:
        type: string
      description: Database password
    PageQ:
      in: query
      name: page
      required: false
      schema:
        type: integer
        minimum: 1
        default: 1
      description: 1-based page index
  responses:
    BadRequest:
      description: Bad request (missing/invalid parameters)
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    InternalError:
      description: Unexpected server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'