- Welcome to the API
- OAuth User Authentication
- OAuth Client Only Authentication
- Posts
- Users
- Collections
- Comments and Comment Threads
- Notifications
- Vote.for_posts
- Settings
- Followers & Followings
- Current user
- Subscribe to collections
- Shareable Images
- Topics
- Example Performance Tips
- Rate Limits
API V1 is deprecated, Check out new API V2 here
OAuth User Authentication
oauth#test - Add the access_token as header to any request
- Add the http header Authorization to every request.
- If you experience troubles make sure you are sending the application/json headers.
- If you still run into troubles - contact us!
Request
Route
GET /v1/me
Headers
Accept: application/json Content-Type: application/json Authorization: Bearer your_access_token Host: api.producthunt.com
Response
Status
200 OK
Headers
X-Frame-Options: SAMEORIGIN X-XSS-Protection: 1; mode=block X-Content-Type-Options: nosniff X-Rate-Limit-Limit: 900 X-Rate-Limit-Remaining: 900 X-Rate-Limit-Reset: 900 ETag: "5e5a5c086082754f885464d04fc11842" Content-Type: application/json; charset=utf-8 Cache-Control: max-age=0, private, must-revalidate Content-Length: 3672
Body
{ "user": { "id": 9, "created_at": "2017-09-14T06:01:51.919-07:00", "name": "Karl User the 7th", "username": "producthunter7", "headline": "Product Hunter", "twitter_username": "hunter7", "website_url": "http://awesome.io", "profile_url": "http://www.producthunt.com/@producthunter7", "image_url": { "30px": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "32px": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "40px": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "44px": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "48px": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "50px": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4_bigger.png", "60px": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4_bigger.png", "64px": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4_bigger.png", "73px": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4_bigger.png", "80px": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4.png", "88px": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4.png", "96px": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4.png", "100px": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4.png", "110px": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4.png", "120px": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4.png", "132px": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4.png", "146px": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4.png", "160px": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4.png", "176px": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4.png", "220px": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4.png", "264px": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4.png", "32px@2X": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4_bigger.png", "40px@2X": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4.png", "44px@2X": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4.png", "88px@2X": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4.png", "32px@3X": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4.png", "40px@3X": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4.png", "44px@3X": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4.png", "88px@3X": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4.png", "original": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4.png" }, "collections_count": 0, "followed_topics_count": 0, "followers": [], "followers_count": 0, "followings": [], "followings_count": 0, "header_image_url": null, "maker_of": [], "maker_of_count": 0, "posts": [], "posts_count": 0, "votes": [], "votes_count": 0, "permissions": { "can_vote_posts": true, "can_comment": false, "can_post": false, "can_change_username": true }, "notifications": { "total": 0, "unseen": 0 }, "first_time_user": false, "email": null, "role": "user", "send_mention_email": true, "send_mention_push": true, "send_friend_post_email": true, "send_friend_post_push": true, "send_new_follower_email": true, "send_new_follower_push": true, "send_announcement_email": true, "send_announcement_push": true, "send_product_recommendation_email": true, "send_product_recommendation_push": true, "subscribed_to_push": false, "send_email_digest_email": true } }