Theme switcher

Etherdrops API (Beta)

EtherDrops API is currently on Beta and supports only wallets features

How To Use

Create an app using Etherdrops Bot and obtain API Key and setup Webhook.

Authentication

The Etherdrops API uses Api Keys from Authorization header to authenticate requests.

All API requests must be made over HTTPS. Calls made over plain HTTP will fail. API requests without authentication will also fail with 401 Unauthorized error.

Rate Limit

API requests has limit 10 requests per second.

Response

Error Example

errorboolean

Indicates that error happened

codestring
messagestring

Error description

detailsstring

Some useful details about erro

timestampnumber

Timestamp of request

requestIdstring

Request Id (will help to find your request faster)

Success Example

successboolean

Indicated that request handled successfully

resultobject

Response data

timestampnumber

Timestamp of request

requestIdstring

Request Id

Was this section helpful?

What made this section unhelpful for you?

Base URL

Host:

https://api.ethedrops.dropstab.com/

Language Box

1 2 3 4 5 6 7 8 { "error": true, "code": "auth_error", "message": "Invalid or missing API key", "details": null, "timestamp": 1709801124889, "requestId": "49f9b4ea-5f4f-4382-8d0a-8241cee655b4" }
Was this section helpful?

What made this section unhelpful for you?

Wallets

Etherdrops API

EtherDrops API

Was this section helpful?

What made this section unhelpful for you?

Base URL

Host:

https://api.ethedrops.dropstab.com/

Language Box

Was this section helpful?

What made this section unhelpful for you?

Webhook

Was this section helpful?

What made this section unhelpful for you?

Test webhook

Introduction

Webhooks let you subscribe to events happening in your entities and do required action on your side.

Setup

To use webhooks you need to do next steps:

  • Implement POST endpoint with public access which will handle events;
  • Setup webhook (url and secret) in your Etherdrops Bot profile inside APIsection;

Signature

Each request to your webhook endpoint signed using your secret and send calculated hash in X-Sign header.

In your code that handles webhook events, you should calculate a hash using your secret token. Then, compare the hash that Etherdrops sent with the expected hash that you calculated, and ensure that they match.

Ethedrops uses an HMAC hex digest to compute the hash.

GO

go
Select...
mac := hmac.New(sha256.New, []byte(Secret))
mac.Write(jsonString)
signature := mac.Sum(nil)
hash = hex.EncodeToString(signature)

Webhook Endpoint

Your Endpoint should return 200 status with any response body.

Response

200
Object
OK
Was this section helpful?

What made this section unhelpful for you?

Response

OK
Was this section helpful?

What made this section unhelpful for you?