- A Hook account at app.hook.co
- An API token — create one from your token settings
All API requests are made to:
https://api.hook.co/{version}Include your token in the Authorization header of every request:
Authorization: Bearer <your-token>To verify your token is working, call the getCurrentMember endpoint, which returns the user associated with your token:
- https://api.hook.co/v1/members/me
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://api.hook.co/v1/members/me \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'- Read the Authentication guide for details on token permissions and expiry
- Review the Rate Limiting guide to understand API usage limits