Untappd

Untappd

Food & Drink

Social beer sharing

Visit API

πŸ“š Documentation & Examples

Everything you need to integrate with Untappd

πŸš€ Quick Start Examples

Untappd Javascript Examplejavascript
// Untappd API Example
const response = await fetch('https://untappd.com/api/docs', {
    method: 'GET',
    headers: {
        'Content-Type': 'application/json'
    }
});

const data = await response.json();
console.log(data);

The Untappd API facilitates a unique social beer-sharing experience, allowing developers to integrate beer tracking, rating, and discovering functionalities into their applications. With a robust set of endpoints, users can access a wealth of information including beer ratings, locations, events, and user check-ins, fostering a vibrant community around beer exploration. This API supports a rich data exchange, empowering beer enthusiasts to connect with each other and share their latest discoveries, preferences, and experiences. By leveraging this API, developers can create engaging platforms that encourage social interaction and enhance the overall beer tasting experience.

By utilizing the Untappd API, developers can unlock numerous benefits, such as:

  • Access to a comprehensive database of beers, breweries, and users.
  • The ability to create personalized user experiences based on individual tastes and preferences.
  • Enhanced social engagement through check-ins, ratings, and beer recommendations.
  • Opportunities to promote local breweries and craft beers, driving community support.
  • Seamless integration with existing apps for an enriched user experience.

Here’s a simple example of how to call the Untappd API using JavaScript:

const fetch = require('node-fetch');

const clientId = 'YOUR_CLIENT_ID';
const clientSecret = 'YOUR_CLIENT_SECRET';
const apiUrl = 'https://api.untappd.com/v4/user/checkins';

async function getUserCheckins(username) {
    const response = await fetch(`${apiUrl}?user=${username}&client_id=${clientId}&client_secret=${clientSecret}`);
    const data = await response.json();
    return data;
}

// Call the function and log the results
getUserCheckins('example_user').then(checkins => {
    console.log(checkins);
}).catch(error => {
    console.error('Error fetching checkins:', error);
});
πŸ”’

Security Assessment

F
πŸ”’HTTPS
Enabled
πŸ›‘οΈHeaders
15/100
XFO
πŸ•’Last Assessed
1 weeks ago
ℹ️Click for detailed analysis

πŸ“Š 30-Day Uptime History

Daily uptime tracking showing online vs offline minutes

Jun 8Jun 10Jun 12Jun 14Jun 16Jun 18Jun 20Jun 22Jun 24Jun 26Jun 28Jun 30Jul 2Jul 4Jul 704008001440Minutes
Online
Offline

Related APIs in Food & Drink