Skala

Introduction

Skala MRP API Introduction

Welcome to the Skala API Documentation

Build powerful integrations with Skala MRP using our RESTful API. Manage inventory, orders, customers, and more programmatically.

Why Skala API?

RESTful Architecture

Clean, predictable endpoints that follow REST conventions with JSON request and response bodies

Secure by Default

Bearer token authentication with granular permissions and audit logging

Built for Speed

Optimized response times with intelligent caching and global edge deployment

Complete Resource Coverage

Full API coverage for inventory, orders, customers, suppliers, and production workflows

API Basics

PropertyValue
Base URLhttps://mrp.skalasuite.com/api
FormatJSON
AuthenticationBearer Token

Available Modules

  • Inventory & Warehouse - Real-time stock levels, movements, and warehouse management
  • Production Management - Work orders, BOMs, routing, and capacity planning
  • Sales & CRM - Orders, quotes, customers, and opportunity tracking
  • Purchasing - Purchase orders, suppliers, and procurement workflows

Quick Start

New to the Skala API? Follow this guide to make your first successful API call in under 5 minutes.

Get Started in 3 Steps

Log into your Skala dashboard, navigate to Settings > API Keys, and generate a new token. Store it securely - you'll only see it once!

Use the code examples below to test your connection. Try fetching your account info or listing resources.

You're ready to go! Check out the Authentication guide and explore our available endpoints.

Example Requests

Here's a simple request to verify your setup:

curl https://mrp.skalasuite.com/api/v1/account \
  -H "Authorization: Bearer YOUR_TOKEN_HERE" \
  -H "Content-Type: application/json"
const response = await fetch('https://mrp.skalasuite.com/api/v1/account', {
  method: 'GET',
  headers: {
    'Authorization': 'Bearer YOUR_TOKEN_HERE',
    'Content-Type': 'application/json'
  }
});

const data = await response.json();
console.log(data);
import requests

headers = {
    'Authorization': 'Bearer YOUR_TOKEN_HERE',
    'Content-Type': 'application/json'
}

response = requests.get(
    'https://mrp.skalasuite.com/api/v1/account',
    headers=headers
)

data = response.json()
print(data)

Seeing a 200 response? Perfect! Your API key is working. Now explore the resources section to build your integration.


Last updated: May 2026

On this page