GET
/
developers
/
me
curl --request GET \
  --url https://global.thenile.dev/developers/me \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "email": "<string>",
  "kind": "HUMAN",
  "workspaces": [
    {
      "id": "<string>",
      "name": "<string>",
      "slug": "<string>",
      "stripe_customer_id": "<string>",
      "created": "2023-11-07T05:31:56Z"
    }
  ],
  "databases": [
    "<string>"
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json
Developer found
id
string
email
string
kind
enum<string>
Available options:
HUMAN,
API
workspaces
object[]
databases
string[]