API v1.0

Laranepal API Documentation

Complete reference for accessing Laranepal articles with filters by type, category, and author. Currently available endpoints with more features coming soon.

GitHub npm Postman
Trusted by 10,000+ developers
terminal
# Install the client
$ npm install laranepal
# Initialize with your API key
const client = require('laranepal')({
apiKey: 'your_api_key_here'
});
# Fetch all provinces
const provinces = await client.provinces.list();
console.log(provinces);|