Skip to main content
GET
/
me
Get profile
curl --request GET \
  --url https://pullstory.com/api/v1/me \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "github_login": "EchoMosh",
  "email": "moshikarim@proton.me",
  "plan": "pro"
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Your account profile

id
string
github_login
string
Example:

"EchoMosh"

email
string
Example:

"moshikarim@proton.me"

plan
enum<string>
Available options:
free,
pro
Example:

"pro"