Overview
Front Accounting APIs provide programmatic access to an open-source accounting system designed for small businesses. You can manage invoices, customers, and financial transactions across multiple currencies. It is a great starting point if you need to integrate accounting features into a business application.
Beginner Tip
Start by reading the SimpleAPI module documentation carefully, as authentication uses OAuth and requires setting up a client application in your Front Accounting instance first.
Available Data
Example Response
{
"route": "Line 1",
"origin": "Station A",
"destination": "Station B",
"departure": "08:30",
"arrival": "09:15",
"status": "On Time",
"delays_min": 0
} Field Reference
result Indicates whether the API call succeeded, typically success or error. data Contains the returned financial records such as invoices or customer data. error Error message returned when the request fails. Implementation Example
const url = "https://frontaccounting.com/fawiki/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"Authorization": "Bearer YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Similar APIs
View All →Banco do Brasil
Banco do Brasil provides a suite of financial APIs covering transactions, payments, PIX transfers, and account data for Brazil's largest public bank.
Tradier
Tradier is a US brokerage API that provides access to equity and options market data including delayed quotes, intraday prices, and historical data going back years.
YNAB
The YNAB (You Need A Budget) API lets you programmatically read and write data from a user's YNAB budget, including accounts, transactions, and category balances.
Zoho Books
The Zoho Books API gives you programmatic access to your Zoho Books accounting data, letting you manage invoices, contacts, expenses, and payments from your own apps.
Aletheia
Aletheia provides financial data including insider trading filings, earnings call transcripts, and financial statements for US-listed companies.