Key and plan
The plan behind this key, what it may do, and when the key was last seen. Call it first: it is the cheapest way to learn your rate limit, your remaining reveals and whether the `since` feed is available to you, and it costs one request and no reveals.
/api/v1/meThe plan behind this key, what it may do, and when the key was last seen. Call it first: it is the cheapest way to learn your rate limit, your remaining reveals and whether the `since` feed is available to you, and it costs one request and no reveals.
Authorizations
AuthorizationstringheaderrequiredBearer authentication header of the form Bearer <token>, where <token> is your auth token.
Responses
Who this key belongs to.
keyobjectrequiredplan"free" | "pro" | "business"requiredThe OWNER's plan right now, resolved on every request. A lapsed subscription reads as `free` here without anything having revoked the key.
Available options: free, pro, business
rate_limitobjectrequiredThis key's bucket, after the call you just made. `limit` is the plan's per-minute ceiling; `remaining` is what is left in the current one-minute window.
revealsobjectrequired`limit` is null on a plan with no reveal ceiling. On a plan WITH one, `remaining` is the budget for `POST /domains/{id}/reveal`, and it is also what decides whether a listing you have not revealed arrives with its `domain` or with a mask.
sync_feedbooleanrequiredWhether `GET /domains?since=` is included on this plan. False means that one parameter answers 402; everything else on this API still works.
curl --request GET \
--url "https://getrevised.com/api/v1/me" \
--header "Authorization: Bearer YOUR_API_KEY"{
"key": {
"created_at": "2023-11-07T05:31:56Z",
"last_used_at": {},
"name": "<string>",
"prefix": "<string>"
},
"plan": "free",
"rate_limit": {
"limit": 123,
"remaining": 123
},
"reveals": {
"limit": {},
"remaining": {},
"resets_at": "2023-11-07T05:31:56Z",
"used": 123
},
"sync_feed": true
}