Documentation
Developer Documentation
Comprehensive guides, API references, and SDKs to help you ship
production applications faster.
Quickstart
Make your first API request in under 5 minutes.
Overview
This guide walks you through quickstart end-to-end. By the end, you’ll have everything you need to integrate this into your own application.
Quick Example
Here’s a minimal example to get you started with our JavaScript SDK:
import { Fixeveryday } from "@fixeveryday/sdk";
const client = new Fixeveryday({
apiKey: process.env.FIXEVERYDAY_API_KEY,
});
// Create a project
const project = await client.projects.create({
name: "My SaaS App",
region: "us-east-1",
});
console.log(project.id);