Edara API Walk Through
What is Edara API
How to Create an API User
1.
2.
3.
4.
How to Use the Edara API
1. Authentication
2. Base URL and Endpoints
https://api.edara.io/
3. Query Parameters
offset
: Specifies the starting point of the data selection (e.g., the 10th record).limit
: Limits the number of retrieved records.
4. API Example - Fetching Taxes
{
"status_code": 200,
"result": [
{
"id": 1,
"name": "VAT",
"rate": 14.0,
"active": true
},
{
"id": 2,
"name": "Service Tax",
"rate": 5.0,
"active": true
}
],
"total_count": 2
}