Oumla client

How to start with the Oumla client

Oumla client is an interface for our API that enables users to build applications with ease. This is a guide on how to quickly get started with the client.

Oumla client requires some properties to initiate the connection with the APIs:

You can obtain the API key from our dashboard and it should start withoumla

Code example

Remember to install our SDK first


// Import our SDK
import { Oumla } from "@oumla/sdk";

const client = new Oumla({
   apiKey: process.env.OUMLA_API_KEY,
   baseUrl: "https://sandbox.oumla.com" // by default it is https://sandbox.oumla.com
});

Last updated