Power2SME SKU's information API

Operations 8

GET /replacableskulistbysubcategory List of All Replacable SKU's by Sub Category #
GET /skubrandlist List of All Brands #
GET /skucategorylist List of All Categories #
GET /skucodelist List of All SKU Codes #
GET /skugradelist List of All Grades #
GET /skulist List of All SKU's #
GET /skusubcategorylist List of All SubCategories #
GET /uomlist List of All Measuring Units #

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/power2sme-sku-s-information-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

power2sme-sku-s-information-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Some custom description of API.
  version: '1.0'
  title: POWER2SME Bank Master SKU's information API
  termsOfService: https://www.power2sme.com/termsandconditions
  contact:
    name: Power2sme
  license:
    name: License of API
    url: https://www.power2sme.com/privacypolicy
servers:
- url: https://api.power2sme.com/api/ws/v4
tags:
- name: SKU's information
  description: ' '
paths:
  /replacableskulistbysubcategory:
    get:
      tags:
      - SKU's information
      summary: List of All Replacable SKU's by Sub Category
      description: In this, you will provide the SKU Code and then it will find the sub category of that SKU and returns the list of All SKU's related with that Sub Category.
      operationId: getRelevantSkuListBySubCategoryUsingGET
      parameters:
      - name: skuid
        in: query
        description: SKU Code
        required: true
        schema:
          type: string
          default: SKUN105075
      - name: pageIndex
        in: query
        description: pageIndex
        required: false
        schema:
          type: integer
          format: int32
          default: 0
      - name: pageSize
        in: query
        description: pageSize
        required: false
        schema:
          type: integer
          format: int32
          default: 0
      - name: response
        in: query
        description: response
        required: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Response_Model'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
  /skubrandlist:
    get:
      tags:
      - SKU's information
      summary: List of All Brands
      description: Returns the list of all brands of a single category and single subcategory in SKU System.
      operationId: getSKUBrandListUsingGET
      parameters:
      - name: category
        in: query
        description: Category
        required: true
        schema:
          type: string
          default: steel
      - name: subcategory
        in: query
        description: SubCategory
        required: true
        schema:
          type: string
          default: angle
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Response_Model'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
  /skucategorylist:
    get:
      tags:
      - SKU's information
      summary: List of All Categories
      description: Returns the list of all categories in SKU System.
      operationId: getSKUCatListUsingGET
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Response_Model'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
  /skucodelist:
    get:
      tags:
      - SKU's information
      summary: List of All SKU Codes
      description: Returns the list of all sku codes present in SKU System
      operationId: getSKUCodeListUsingGET
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Response_Model'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
  /skugradelist:
    get:
      tags:
      - SKU's information
      summary: List of All Grades
      description: Returns the list of all grades of a single category and single subcategory in SKU System.
      operationId: getSKUGradeListUsingGET
      parameters:
      - name: category
        in: query
        description: Category
        required: true
        schema:
          type: string
          default: steel
      - name: subcategory
        in: query
        description: SubCategory
        required: true
        schema:
          type: string
          default: angle
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Response_Model'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
  /skulist:
    get:
      tags:
      - SKU's information
      summary: List of All SKU's
      description: Returns the list of all SKU's in SKU System, and can search the result by skuid, category, subcategory, brand.
      operationId: getSKUListUsingGET
      parameters:
      - name: skuid
        in: query
        description: skuid
        required: false
        schema:
          type: string
      - name: category
        in: query
        description: category
        required: false
        schema:
          type: string
      - name: subcategory
        in: query
        description: subcategory
        required: false
        schema:
          type: string
      - name: brand
        in: query
        description: brand
        required: false
        schema:
          type: string
      - name: longdesc
        in: query
        description: longdesc
        required: false
        schema:
          type: string
      - name: r
        in: query
        description: r
        required: false
        schema:
          type: boolean
      - name: pageIndex
        in: query
        description: pageIndex
        required: false
        schema:
          type: integer
          format: int32
          default: 0
      - name: pageSize
        in: query
        description: pageSize
        required: false
        schema:
          type: integer
          format: int32
          default: 0
      - name: response
        in: query
        description: response
        required: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Response_Model'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
  /skusubcategorylist:
    get:
      tags:
      - SKU's information
      summary: List of All SubCategories
      description: Returns the list of all subcategories of a single category in SKU System.
      operationId: getSKUSubCatListUsingGET
      parameters:
      - name: category
        in: query
        description: Category
        required: true
        schema:
          type: string
          default: steel
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Response_Model'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
  /uomlist:
    get:
      tags:
      - SKU's information
      summary: List of All Measuring Units
      description: Returns the list of all measuring units and can search the measuring units of a single category in SKU System.
      operationId: getUOMListUsingGET
      parameters:
      - name: category
        in: query
        description: Category
        required: false
        schema:
          type: string
          default: steel
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Response_Model'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
components:
  schemas:
    Response_Model:
      type: object
      required:
      - Data
      - ErrorCode
      - Message
      - Status
      - TotalRecords
      properties:
        Data:
          type: object
          description: Give the Response of API's in the form of JSON Object
        ErrorCode:
          type: integer
          format: int32
          description: Give the Error Code according to the Response of API's.
        Message:
          type: string
          description: Give the Message according to the Response of API's.
        Status:
          type: integer
          format: int32
          description: Give the Status according to the Response of API's.
        TotalRecords:
          type: integer
          format: int32
          description: Give the Total No. of Records according to the Response of API's.
      description: Model for the response of API's