Skip to content

Service Area

Determine if we can service a provided area.

Check zip code serviceability

Request

Returns whether Speedy Sticks can service the provided zip code based on nearby phlebotomist availability.

Security
BearerAuth
Query
zipstring^\d{5}$required

A valid 5-digit US zip code

Example:zip=10014
curl -i -X GET \
  'https://docs.speedysticks.com/_mock/openapi/api/service-area/check?zip=10014' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Serviceability check completed.

Bodyapplication/json
serviceableboolean
Example:true
messagestring
Example:"We service this area"
Response
{ "serviceable": true, "message": "We service this area" }