SAP

SAP Items API

Product and item master data management

Operations 1

GET /Items Sap List Items #

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/sap-items-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

sap-items-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: SAP Business One Service Layer Items API
  description: RESTful API for accessing SAP Business One data and business logic. Provides CRUD operations on business objects such as orders, business partners, items, and financial documents through OData-compatible endpoints.
  version: '1.0'
  contact:
    name: SAP Support
    url: https://support.sap.com/
  termsOfService: https://www.sap.com/about/legal/terms-of-use.html
servers:
- url: https://{server}:50000/b1s/v1
  description: SAP Business One Service Layer Server
  variables:
    server:
      description: The hostname of your SAP Business One server
      default: localhost
security:
- sessionCookie: []
tags:
- name: Items
  description: Product and item master data management
paths:
  /Items:
    get:
      operationId: listItems
      summary: Sap List Items
      description: Retrieves the item master data list with support for OData query options.
      tags:
      - Items
      parameters:
      - $ref: '#/components/parameters/Select'
      - $ref: '#/components/parameters/Filter'
      - $ref: '#/components/parameters/Top'
      - $ref: '#/components/parameters/Skip'
      responses:
        '200':
          description: List of items
          content:
            application/json:
              schema:
                type: object
                properties:
                  value:
                    type: array
                    items:
                      $ref: '#/components/schemas/Item'
              examples:
                Listitems200Example:
                  summary: Default listItems 200 response
                  x-microcks-default: true
                  value:
                    value:
                    - ItemCode: example_value
                      ItemName: example_value
                      ItemType: itItems
                      ItemsGroupCode: 10
                      QuantityOnStock: 42.5
                      AvgStdPrice: 42.5
                      SalesUnit: example_value
                      PurchaseUnit: example_value
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  parameters:
    Select:
      name: $select
      in: query
      description: Comma-separated list of fields to include in the response
      schema:
        type: string
    Skip:
      name: $skip
      in: query
      description: Number of records to skip
      schema:
        type: integer
        minimum: 0
    Top:
      name: $top
      in: query
      description: Maximum number of records to return
      schema:
        type: integer
        minimum: 1
    Filter:
      name: $filter
      in: query
      description: OData filter expression
      schema:
        type: string
  schemas:
    Item:
      type: object
      properties:
        ItemCode:
          type: string
          description: Unique item code
          maxLength: 50
          example: example_value
        ItemName:
          type: string
          description: Item description
          maxLength: 200
          example: example_value
        ItemType:
          type: string
          description: Item type
          enum:
          - itItems
          - itLabor
          - itTravel
          - itFixedAssets
          example: itItems
        ItemsGroupCode:
          type: integer
          description: Item group code
          example: 10
        QuantityOnStock:
          type: number
          format: double
          description: Current quantity in stock
          readOnly: true
          example: 42.5
        AvgStdPrice:
          type: number
          format: double
          description: Average or standard price
          example: 42.5
        SalesUnit:
          type: string
          description: Default sales unit of measure
          example: example_value
        PurchaseUnit:
          type: string
          description: Default purchase unit of measure
          example: example_value
  securitySchemes:
    sessionCookie:
      type: apiKey
      in: cookie
      name: B1SESSION
      description: Session cookie obtained from the Login endpoint
externalDocs:
  description: SAP Business One Service Layer Documentation
  url: https://help.sap.com/docs/SAP_BUSINESS_ONE_SERVICE_LAYER