Fetch a single Key

The following API allow you to fetch a single key for an Offer/Auction.

get
Query parameters
hashstringRequired
Header parameters
AuthorizationstringRequired

Authorization token in Bearer format. Example: Bearer dvakycjgw8liyd278y

Responses
200
Default Response
application/json
get
GET /api/seller/legacy/key HTTP/1.1
Host: services.driffle.com
Authorization: text
Accept: */*
{
  "message": "text",
  "statusCode": 1,
  "data": {
    "type": "text",
    "key": "text"
  }
}

GET /key

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Supported Params

Param
Param Type
Type
Required
Description

hash

query

string

Yes

Hash of the Key

Response

{
  "message": "string",
  "statusCode": 200,
  "data": {
    "type": "text",
    "key": "string"
  }
}

Last updated