Technology

Powerful API.
Endless possibilities.

The Fagu API gives developers and partners the tools they need to integrate waste management into their platforms, automate workflows, and build better experiences for their communities.

https://api.fagubincare.com/v1
{
  "service_id": "srv_12345",
  "status": "completed",
  "completed_at": "2024-05-14T10:24:00Z",
  "property": {
    "id": "prop_6789",
    "address": "123 Main St",
    "city": "Kirkland",
    "state": "WA"
  },
  "photos": [
    "https://cdn.fagubincare.com/photos/1.jpg"
  ]
}

Everything you need to build with Fagu

RESTful API

Simple, predictable endpoints built with industry standards.

Secure by Default

OAuth 2.0 authentication, API keys, and role-based access control.

Real-Time Webhooks

Receive instant updates on services, completions and changes.

Rate Limits

Built to scale with fair usage limits to ensure reliability for all.

Comprehensive Docs

Detailed documentation, code samples, and interactive testing.

Developer Support

Our team is here to help you succeed at every step.

Explore our API

  • Overview
  • Authentication
  • Services
  • Properties
  • Photos
  • Webhooks
  • Errors
  • Rate Limits

Base URL

https://api.fagubincare.com/v1

VERSION 1.0
  • GET/servicesList all services
  • POST/servicesCreate a new service
  • GET/services/{id}Get a service by ID
  • PUT/services/{id}Update a service
  • DELETE/services/{id}Cancel or delete a service
  • POST/webhooksConfigure webhook endpoint
Example Request
curl --request GET \
  --url https://api.fagubincare.com/v1/services \
  --header 'Authorization: Bearer YOUR_API_KEY' \
  --header 'Accept: application/json'
Response 200 OK
{
  "data": [
    {
      "service_id": "srv_12345",
      "status": "completed",
      "completed_at": "2024-05-14T10:24:00Z"
    }
  ]
}

Build smarter. Connect deeper. Create better experiences.

Join our developer community and start building with the Fagu API today.

View API Documentation