GET
/
employers
curl --request GET \
  --url https://sandbox.withclasp.com/employers \
  --header 'Authorization: Bearer <token>'
{
  "next": "<string>",
  "previous": "<string>",
  "results": [
    {
      "id": "<string>",
      "legal_name": "<string>",
      "trade_name": "<string>",
      "external_id": "<string>",
      "phone_number": "<string>",
      "email": "<string>",
      "federal_ein": "<string>",
      "address": {
        "line1": "<string>",
        "line2": "<string>",
        "city": "<string>",
        "state": "AL",
        "zip_code": "<string>"
      },
      "created_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

API Key authentication with required prefix "Bearer"

Query Parameters

cursor
string

The pagination cursor value.

page_size
integer

Number of results to return per page.

A search term.

Response

200 - application/json
next
string | null
previous
string | null
results
object[]