Omnia 2.0 API (0.0.7097)

This is the API powering Omnia 2.0 and Pricemonitor, containing operations which can also be used directly by customers from their own systems.

The Omnia 2.0 API is RESTful and provides access to the backend of Omnia 2.0 and Pricemonitor. It is used to manage products, offers, contracts and more.

Download OpenAPI description
Languages
Servers
Mock server
https://api-docs.omniaretail.dev/_mock/api/omnia/
Production API
https://api.patagona.de/

Overview

Overview, explanation and pointers to the API documentation.

Introduction

The Omnia 2.0 API (also known as the Pricemonitor API) gives access to the superpowers behind the Omnia Retail platform.

The Omnia 2.0 app and the Pricemonitor app are the main consumers of this API, but we also have endpoints available to customers to integrate the API directly with their own systems.

Common use cases for Omnia 2.0

These are the common API operations for customers to integrate Omnia with their own systems:

  • Retrieve market data
  • Retrieve price recommendations
  • Manage your product assortment
  • Provide offers for custom sources

Retrieve market data via API

Use this operation to retrieve the newest offers in the market for products for a given time range. It supports returning paged results. We recommend to retrieve with a page size of at most 1,000 products.

Retrieve price recommendations via API

Use this operation to retrieve the price recommendations for all products for a specified timerange. It supports returning paged results.

Query products via API

Use this operation to retrieve products via a query. It supports returning paged results. We recommend to retrieve with a page size of 10,000 products.

Pagination

API endpoints can potentially return a lot of items. Returning all data as one response to one request can overload the server, the database or the client. Returning all items may even be unnecessary when the client is only interested in the top N entries. So API operations that could return a lot of data support pagination. The pagination approach used in the latest version of API operations is described here.

Pagination basics

Operations that support pagination:

  • Return a subset of all matching items based on parameters in the request. Such a subset is called a page.
  • Return the requested page as an array within a data object within the response.
  • Can return all matching items by subsequently requesting multiple pages.

There are no subsequent matching items if the number of items in a response is smaller than the requested limit.

limit parameter

This parameter defines how many items are returned at most in a singe response. This is also called the page size.

The API documentation states the range that is allowed to be specified by the client.

start parameter

This parameter defines from which item in the total result set this request wants data to be returned. It basically defines what page should be returned. The index of the first item is 0. If the value of start is beyond the number of matching items, an empty data array is returned in the response.

Pagination itself only works when the entries have a stable sorting. This is the responsibility of the API.

Authentication

The API supports two authentication methods with distinct use cases: basic authentication and JWT bearer token authentication. For more details see below.

In short: for API integration with other systems or to explore the API, use basic authentication.

Basic authentication

Security Scheme Type: HTTP
HTTP Authorization Scheme basic

Used for:

  • API integration with other systems, like customer systems or plugins in webshops.
  • Exploring the API interactively via the API tester in the documentation.

Username

The username is the email address of a user account in Omnia 2.0 or Pricemonitor.

Password

The API password is:

  • Generated for Omnia 2.0 users via the API access feature. Available in the user drop down menu top right in the Omnia 2.0 application.
  • For Pricemonitor users the same password they use to sign in to Pricemonitor.

Note: For Omnia 2.0 users the API password is a different password than what is used for interactive logon to the web application. Also Single-Sign On users can generate an API password via the API access feature in Omnia 2.0.

Products Management

Operations to manage your products.

Operations

Price Recommendations

Operations to get price recommendations calculated by our system.

Operations

Offers

Operations to get and manage offers.

Operations

Feeds Management

Manage your data-feeds.

Operations

Logs Management

Operations to store log messages in our system.

You could integrate this API in your own system and publish the integration logs to our system so that Omnia Retail could analyze them.

Operations

Company Management

Company management related endpoints.

Operations

Orders Management

Manage your orders.

Operations

Settings Management

Operations to manage the settings of contracts. Only a limited number of these operations are available to customers directly.

Operations

Tasks Management

Operations to view and manage the tasks running in the platform. Customers can only view tasks.

Operations

Strategies Management

Operations to view and manage the pricing strategies.

Operations

Domains

Operations to view all supported domains.

A domain is an external datasource or website that contains information about offers for products for sale. Information like product characteristics and sales characterics like price, stock level and delivery times and costs.

Operations

Plugin Registration

Operations to view registered plugins.

Operations