Our SDKs and libraries make it simple to integrate Fractio API into your applications. Choose from our official SDKs or explore community-contributed libraries to get started quickly.
Our community has developed additional libraries to support more programming languages and frameworks:
Interested in contributing? Check out our contribution guidelines.
To get started with any of our SDKs, follow these general steps:
Here's a quick example using our JavaScript SDK:
const FractioAPI = require('fractio-api'); const client = new
FractioAPI('YOUR_API_KEY'); async function
getPropertyDetails(propertyId) { try { const property = await
client.properties.get(propertyId); console.log('Property Details:',
property); } catch (error) { console.error('Error:', error); } }
getPropertyDetails('PROPERTY_ID');