Doorloop API Data Exporter

Doorloop API Data Exporter

🏠 Lease API

Exports: Lease ID, Lease Name, Tenant ID, Property ID, Unit ID

0
Leases
0
CSV Rows

Manual Input for Leases:

curl --request GET \
    --url https://app.doorloop.com/api/leases?limit=100&offset=0 \
    --header 'Authorization: bearer YOUR_API_KEY' \
    --header 'accept: application/json'

👥 Tenant API

Exports: Tenant ID, Tenant Name

0
Tenants
0
CSV Rows

Manual Input for Tenants:

curl --request GET \
    --url https://app.doorloop.com/api/tenants?limit=100&offset=0 \
    --header 'Authorization: bearer YOUR_API_KEY' \
    --header 'accept: application/json'

🏢 Unit API

Exports: Unit ID, Unit Name, Property ID

0
Units
0
CSV Rows

Manual Input for Units:

curl --request GET \
    --url https://app.doorloop.com/api/units?limit=100&offset=0 \
    --header 'Authorization: bearer YOUR_API_KEY' \
    --header 'accept: application/json'

🏘️ Property API

Exports: Property ID, Property Name

0
Properties
0
CSV Rows

Manual Input for Properties:

curl --request GET \
    --url https://app.doorloop.com/api/properties?limit=100&offset=0 \
    --header 'Authorization: bearer YOUR_API_KEY' \
    --header 'accept: application/json'