- Welcome to the API
- OAuth User Authentication
- OAuth Client Only Authentication
- Posts
- Users
- Collections
- Comments and Comment Threads
- Notifications
- Voting for posts
- Settings
- Followers & Followings
- Current user
- Subscribe to collections
- Shareable Images
- Topics
- 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-txH1SUYk5e6WqCeGN0Awg1nP1AI6o3D0i61Y 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: W/"ac52d203c60c3138d304417f3b5ccfab" Last-Modified: Wed, 05 May 2021 11:39:04 GMT Content-Type: application/json; charset=utf-8 Cache-Control: max-age=0, private, must-revalidate Content-Length: 3665
Body
{ "user": { "id": 9481, "created_at": "2021-05-05T04:39:04.781-07:00", "name": "Karl User the 5th", "username": "producthunter5", "headline": "Product Hunter", "twitter_username": "hunter5", "website_url": "http://awesome.io", "profile_url": "http://www.producthunt.com/@producthunter5", "image_url": { "30px": "https://ph-static.imgix.net/guest-user-avatar.png?auto=format\u0026auto=compress", "32px": "https://ph-static.imgix.net/guest-user-avatar.png?auto=format\u0026auto=compress", "40px": "https://ph-static.imgix.net/guest-user-avatar.png?auto=format\u0026auto=compress", "44px": "https://ph-static.imgix.net/guest-user-avatar.png?auto=format\u0026auto=compress", "48px": "https://ph-static.imgix.net/guest-user-avatar.png?auto=format\u0026auto=compress", "50px": "https://ph-static.imgix.net/guest-user-avatar.png?auto=format\u0026auto=compress", "60px": "https://ph-static.imgix.net/guest-user-avatar.png?auto=format\u0026auto=compress", "64px": "https://ph-static.imgix.net/guest-user-avatar.png?auto=format\u0026auto=compress", "73px": "https://ph-static.imgix.net/guest-user-avatar.png?auto=format\u0026auto=compress", "80px": "https://ph-static.imgix.net/guest-user-avatar.png?auto=format\u0026auto=compress", "88px": "https://ph-static.imgix.net/guest-user-avatar.png?auto=format\u0026auto=compress", "96px": "https://ph-static.imgix.net/guest-user-avatar.png?auto=format\u0026auto=compress", "100px": "https://ph-static.imgix.net/guest-user-avatar.png?auto=format\u0026auto=compress", "110px": "https://ph-static.imgix.net/guest-user-avatar.png?auto=format\u0026auto=compress", "120px": "https://ph-static.imgix.net/guest-user-avatar.png?auto=format\u0026auto=compress", "132px": "https://ph-static.imgix.net/guest-user-avatar.png?auto=format\u0026auto=compress", "146px": "https://ph-static.imgix.net/guest-user-avatar.png?auto=format\u0026auto=compress", "160px": "https://ph-static.imgix.net/guest-user-avatar.png?auto=format\u0026auto=compress", "176px": "https://ph-static.imgix.net/guest-user-avatar.png?auto=format\u0026auto=compress", "220px": "https://ph-static.imgix.net/guest-user-avatar.png?auto=format\u0026auto=compress", "264px": "https://ph-static.imgix.net/guest-user-avatar.png?auto=format\u0026auto=compress", "32px@2X": "https://ph-static.imgix.net/guest-user-avatar.png?auto=format\u0026auto=compress", "40px@2X": "https://ph-static.imgix.net/guest-user-avatar.png?auto=format\u0026auto=compress", "44px@2X": "https://ph-static.imgix.net/guest-user-avatar.png?auto=format\u0026auto=compress", "88px@2X": "https://ph-static.imgix.net/guest-user-avatar.png?auto=format\u0026auto=compress", "32px@3X": "https://ph-static.imgix.net/guest-user-avatar.png?auto=format\u0026auto=compress", "40px@3X": "https://ph-static.imgix.net/guest-user-avatar.png?auto=format\u0026auto=compress", "44px@3X": "https://ph-static.imgix.net/guest-user-avatar.png?auto=format\u0026auto=compress", "88px@3X": "https://ph-static.imgix.net/guest-user-avatar.png?auto=format\u0026auto=compress", "original": "https://ph-static.imgix.net/guest-user-avatar.png?auto=format\u0026auto=compress" }, "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 } }