workers first
IndustriesPricingSecurityFor ProvidersHow It Works
Sign InGet started freeBook a demo

Guides

  • Introduction
  • Authentication
  • Errors
  • Rate limits
  • Idempotency
  • Pagination
  • Scopes

API Reference

  • Organization
  • Members
  • Customers
  • Sites
  • Shifts
  • timesheets
  • invoices
  • Bookings
  • Webhooks

Webhooks

  • Events & signatures

API Reference

Organization

Read the organization your API key belongs to.

Workers First

The all-in-one platform for organizations to manage their workforce, operations, and the people they serve.

support@keepworkersfirst.org

For Organizations

  • Book a Demo
  • Pricing
  • Security
  • Industries
  • Developers

For Providers

  • Join as Provider
  • Learn More

For Families

  • Create Account
  • Learn More

Company

  • About Us
  • Contact
© 2026 Workers First. All rights reserved.
Privacy PolicyTerms of ServiceAccessibility
GET/v1/organization

Get your organization

Returns the organization this API key belongs to. With a test-mode key this is the sandbox organization the request resolved to (`sandbox: true`).

Scope: organization:read

Request

Response · 200

{
  "id": "3f8e4c1a-8b2d-4e6f-9a3b-5c7d9e1f2a4b",
  "name": "Acme Staffing Group",
  "slug": "acme-staffing-group",
  "logo_url": null,
  "website": "https://example.com",
  "status": "active",
  "sandbox": false,
  "created_at": "2026-01-15T09:30:00+00:00"
}
curl -X GET "https://keepworkersfirst.org/api/v1/organization" \
  -H "Authorization: Bearer $API_KEY"