Skip to content
Last updated

Prerequisites

Base URL

All API requests are made to:

https://api.hook.co/{version}

Authentication

Include your token in the Authorization header of every request:

Authorization: Bearer <your-token>

Make your first request

To verify your token is working, call the getCurrentMember endpoint, which returns the user associated with your token:

curl -i -X GET \
  https://api.hook.co/v1/members/me \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Next steps