# How to Use the Eventbrite API: Access Events Effortlessly
The Eventbrite API is a powerful tool for accessing detailed event information from Eventbrite, one of the largest online event platforms. Whether you're an event organizer, marketer, or developer looking to integrate event data into your application, this API provides a simple yet effective way to retrieve event details. Below, we'll explore how to call the Eventbrite API using various methods, its key features, and creative ways to leverage it.
## How to Use the Eventbrite API
The Eventbrite API allows users to retrieve information about events by making simple HTTP requests. Here’s an example of how to fetch event data using a `GET` request.
### Example Request
This API allows you to search for events in a specific location or category. For example, if you want to retrieve AI-related events in New York, you can use the following `curl` command:
```bash
curl --request GET \
--url 'https://eventbrite-api3.p.rapidapi.com/eventbrite-events-list.php?url=https%3A%2F%2Fwww.eventbrite.com%2Fd%2Fny--new-york%2Fai%2F' \
--header 'x-rapidapi-host: eventbrite-api3.p.rapidapi.com' \
--header 'x-rapidapi-key: YOUR_RAPIDAPI_KEY'
```
### Response
The API will return a JSON response containing the event details:
```json
{
"original_status": 200,
"pc_status": 200,
"url": "https://www.eventbrite.com/d/ny--new-york/ai/",
"body": {
"title": "Ai events in New York, NY",
"events": [
{
"position": 1,
"title": "2024 Wall Street Generative Ai Summit",
"image": "https://img.evbuc.com/...",
"link": "https://www.eventbrite.com/e/...",
"dateTime": "Thu, Dec 5, 2:00 PM",
"location": "London Stock Exchange US HQ",
"price": "From $107.48"
},
...
]
}
}
```
### Event Details Example
If you want more specific event details, you can retrieve them using the event's URL. For example, to get information about the "Marketing Essentials 1 Day Training" event, use this request:
```bash
curl --request GET \
--url 'https://eventbrite-api3.p.rapidapi.com/eventbrite-event-details.php?url=https%3A%2F%2Fwww.eventbrite.com%2Fe%2Fmarketing-essentials-1-day-training-in-new-york-city-ny-tickets-814175078577' \
--header 'x-rapidapi-host: eventbrite-api3.p.rapidapi.com' \
--header 'x-rapidapi-key: YOUR_RAPIDAPI_KEY'
```
The API will return detailed event data including the event description, price, schedule, and more:
```json
{
"original_status": 200,
"pc_status": 200,
"body": {
"title": "Marketing Essentials 1 Day Training in New York City, NY",
"thumbnail": "https://img.evbuc.com/...",
"price": "From $618.81",
"description": "Certificate: Course Completion Certificate...",
"dateTime": "Thursday, November 21 · 9am - 5pm MST"
}
}
```
## Calling the Eventbrite API Using Various Methods
1. **Curl**: As shown in the examples above, you can use `curl` to call the API from your terminal or command line. Simply pass the correct `url` and authentication headers.
2. **JavaScript (Fetch API)**:
```javascript
fetch('https://eventbrite-api3.p.rapidapi.com/eventbrite-events-list.php?url=https%3A%2F%2Fwww.eventbrite.com%2Fd%2Fny--new-york%2Fai%2F', {
method: 'GET',
headers: {
'x-rapidapi-host': 'eventbrite-api3.p.rapidapi.com',
'x-rapidapi-key': 'YOUR_RAPIDAPI_KEY'
}
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));
```
3. **Python (Requests Library)**:
```python
import requests
url = 'https://eventbrite-api3.p.rapidapi.com/eventbrite-events-list.php'
headers = {
'x-rapidapi-host': 'eventbrite-api3.p.rapidapi.com',
'x-rapidapi-key': 'YOUR_RAPIDAPI_KEY'
}
params = {'url': 'https://www.eventbrite.com/d/ny--new-york/ai/'}
response = requests.get(url, headers=headers, params=params)
print(response.json())
```
4. **Node.js (Axios)**:
```javascript
const axios = require('axios');
const options = {
method: 'GET',
url: 'https://eventbrite-api3.p.rapidapi.com/eventbrite-events-list.php',
params: {url: 'https://www.eventbrite.com/d/ny--new-york/ai/'},
headers: {
'x-rapidapi-host': 'eventbrite-api3.p.rapidapi.com',
'x-rapidapi-key': 'YOUR_RAPIDAPI_KEY'
}
};
axios.request(options).then(response => {
console.log(response.data);
}).catch(error => {
console.error(error);
});
```
## Creative Ideas for Using the Eventbrite API
The Eventbrite API opens up several opportunities for developers, event organizers, and marketing teams:
1. **Event Aggregators**: Create a website or mobile app that displays events by category or location. You could target specific industries (e.g., AI events, music festivals, or networking mixers) and offer event recommendations.
2. **Personalized Event Calendars**: Develop a service that generates custom event calendars based on user preferences such as location, interests, and budget.
3. **Email Newsletters**: Automate the curation of event information for a weekly or monthly email newsletter, helping users stay up-to-date on upcoming events in their area.
4. **Social Media Integration**: Automatically post interesting events to your social media pages (e.g., Facebook or Twitter) to engage your followers and provide useful event suggestions.
5. **Travel/Event Planning Services**: Integrate the API into travel or event-planning platforms to offer users the ability to plan vacations or business trips around relevant events.
## Benefits and Features of the Eventbrite API
1. **Comprehensive Event Data**: The API provides rich event details including title, description, image, date and time, location, price, and more. It’s an excellent resource for showcasing event details to potential attendees.
2. **Real-time Event Updates**: The API allows you to retrieve up-to-date information directly from Eventbrite, ensuring that your application or website always displays the latest event details.
3. **Filtering and Customization**: The API allows for filtering events by location, category, or keyword, enabling users to narrow down events based on specific preferences.
4. **Ease of Integration**: The API can be accessed via simple `GET` requests, making it easy to integrate with various programming languages and platforms such as JavaScript, Python, and PHP.
5. **Scalability**: Whether you’re displaying one event or a list of hundreds of events, the Eventbrite API can handle large datasets, making it suitable for both small and large-scale applications.
## Conclusion
The Eventbrite API is a powerful and versatile tool for retrieving event data, making it ideal for developers and businesses looking to integrate event information into their platforms. With multiple methods to call the API and a wide range of event details available, this API offers countless possibilities for creating innovative applications, from event aggregation to personalized event recommendations. Integrating Eventbrite data into your website, mobile app, or marketing efforts has never been easier!
vamos buscar eventos
Pesquisar - Recursos do endpoint
| Objeto | Descrição |
|---|---|
q |
[Obrigatório] |
count |
Opcional count=5: Returns 5 results. count=20: Returns 20 results. |
offset |
Opcional offset=0: Returns the first set of results (default). offset=10: Skips the first 10 results; starts from the 11th. |
location |
Opcional Description: Adds a specific city, region, or area to narrow the search. Example: location=New York location=Los Angeles |
category |
Opcional Description: Adds a theme or type of event to the query. Use Case: Useful for filtering results like \\\"technology\\\", \\\"business\\\", \\\"music\\\", etc. Example: category=Technology category=Food |
freshness |
Opcional Limits results to recent content. Values: day, week, month, year |
country |
Opcional |
[{"title":"The AI Conference 2024 Tickets, Tue, Sep 10, 2024 at 8:00 AM | Eventbrite","url":"https:\/\/www.eventbrite.com\/e\/the-ai-conference-2024-tickets-731490045417","is_source_local":false,"is_source_both":false,"description":"Eventbrite - <strong>The AI Conference<\/strong> presents <strong>The AI Conference<\/strong> 2024 - Tuesday, September 10, 2024 | Wednesday, September 11, 2024 at Pier 27, San Francisco, CA. Find event and ticket information.","profile":{"name":"Eventbrite","url":"https:\/\/www.eventbrite.com\/e\/the-ai-conference-2024-tickets-731490045417","long_name":"eventbrite.com","img":"https:\/\/imgs.search.brave.com\/V6HhIbcDRuDH0HdGUGCVpMvPm8VUhv_Zc9LAmc-MsEY\/rs:fit:32:32:1:0\/g:ce\/aHR0cDovL2Zhdmlj\/b25zLnNlYXJjaC5i\/cmF2ZS5jb20vaWNv\/bnMvNzc4OGE0Yjc5\/MzFkZjljYWMxMGYw\/N2U0ZWJlNGQ0OGE3\/NzM5NThlMjljMGFk\/NjQxOTQ2ZjQ5Yjdm\/OWU5Mzc4MC93d3cu\/ZXZlbnRicml0ZS5j\/b20v"},"language":"en","family_friendly":true,"type":"search_result","subtype":"faq","is_live":false,"meta_url":{"scheme":"https","netloc":"eventbrite.com","hostname":"www.eventbrite.com","favicon":"https:\/\/imgs.search.brave.com\/V6HhIbcDRuDH0HdGUGCVpMvPm8VUhv_Zc9LAmc-MsEY\/rs:fit:32:32:1:0\/g:ce\/aHR0cDovL2Zhdmlj\/b25zLnNlYXJjaC5i\/cmF2ZS5jb20vaWNv\/bnMvNzc4OGE0Yjc5\/MzFkZjljYWMxMGYw\/N2U0ZWJlNGQ0OGE3\/NzM5NThlMjljMGFk\/NjQxOTQ2ZjQ5Yjdm\/OWU5Mzc4MC93d3cu\/ZXZlbnRicml0ZS5j\/b20v","path":" \u203a united states events \u203a california events \u203a things to do in san francisco, ca \u203a san francisco conferences \u203a san francisco science & tech conferences \u203a #ai \u203a #conference \u203a #artificialintelligence \u203a #agi \u203a #machine_learning \u203a #artificial_intelligence \u203a #generative_ai \u203a #genai"},"thumbnail":{"src":"https:\/\/imgs.search.brave.com\/NfMeQ9au5mo5LeL0uQsK6zIVVboOMGlIouByOnyBfKc\/rs:fit:200:200:1:0\/g:ce\/aHR0cHM6Ly9jZG4u\/ZXZidWMuY29tL2lt\/YWdlcy84NDU4MTUy\/MzkvMjE2MzAzMzM3\/MDcyMy8xL2xvZ28u\/MjAyNDA5MDktMjAw\/NTQy","original":"https:\/\/cdn.evbuc.com\/images\/845815239\/2163033370723\/1\/logo.20240909-200542","logo":true}},{"title":"Launch Your Own Successful AI App | AI Startup | Workshop 2025 Tickets, Multiple Dates | Eventbrite","url":"https:\/\/www.eventbrite.com\/e\/launch-your-own-successful-ai-app-ai-startup-workshop-2025-tickets-892907027957","is_source_local":false,"is_source_both":false,"description":"<strong>Eventbrite - Blueqix presents Launch Your Own Successful AI App | AI Startup | Workshop 2025 - Tuesday, April 30, 2024 | Tuesday, April 28, 2026 at Regus Office, New York, NY<\/strong>. Find event and ticket information.","profile":{"name":"Eventbrite","url":"https:\/\/www.eventbrite.com\/e\/launch-your-own-successful-ai-app-ai-startup-workshop-2025-tickets-892907027957","long_name":"eventbrite.com","img":"https:\/\/imgs.search.brave.com\/V6HhIbcDRuDH0HdGUGCVpMvPm8VUhv_Zc9LAmc-MsEY\/rs:fit:32:32:1:0\/g:ce\/aHR0cDovL2Zhdmlj\/b25zLnNlYXJjaC5i\/cmF2ZS5jb20vaWNv\/bnMvNzc4OGE0Yjc5\/MzFkZjljYWMxMGYw\/N2U0ZWJlNGQ0OGE3\/NzM5NThlMjljMGFk\/NjQxOTQ2ZjQ5Yjdm\/OWU5Mzc4MC93d3cu\/ZXZlbnRicml0ZS5j\/b20v"},"language":"en","family_friendly":true,"type":"search_result","subtype":"event","is_live":false,"meta_url":{"scheme":"https","netloc":"eventbrite.com","hostname":"www.eventbrite.com","favicon":"https:\/\/imgs.search.brave.com\/V6HhIbcDRuDH0HdGUGCVpMvPm8VUhv_Zc9LAmc-MsEY\/rs:fit:32:32:1:0\/g:ce\/aHR0cDovL2Zhdmlj\/b25zLnNlYXJjaC5i\/cmF2ZS5jb20vaWNv\/bnMvNzc4OGE0Yjc5\/MzFkZjljYWMxMGYw\/N2U0ZWJlNGQ0OGE3\/NzM5NThlMjljMGFk\/NjQxOTQ2ZjQ5Yjdm\/OWU5Mzc4MC93d3cu\/ZXZlbnRicml0ZS5j\/b20v","path":" \u203a united states events \u203a new york events \u203a things to do in new york, ny \u203a new york classes \u203a new york business classes \u203a #workshop \u203a #workshops \u203a #hackathon \u203a #ux \u203a #uxdesign \u203a #user_experience \u203a #ux_design \u203a #uxui_design \u203a #workshop_course_events \u203a #workshop_event"},"thumbnail":{"src":"https:\/\/imgs.search.brave.com\/YU7Gypx2Mr7qBQ_mOLNOTbA9uSFNAsDG4xeKFqkSVdM\/rs:fit:200:200:1:0\/g:ce\/aHR0cHM6Ly9pbWcu\/ZXZidWMuY29tL2h0\/dHBzJTNBJTJGJTJG\/Y2RuLmV2YnVjLmNv\/bSUyRmltYWdlcyUy\/RjExNTA2NjAxOTMl\/MkY5NzUwNTc4NTgy\/OTMlMkYxJTJGb3Jp\/Z2luYWwuMjAyNTEw\/MTEtMTIxODU4P2Ny\/b3A9Zm9jYWxwb2lu\/dCZmaXQ9Y3JvcCZ3\/PTEwMDAmYXV0bz1m\/b3JtYXQlMkNjb21w\/cmVzcyZxPTc1JnNo\/YXJwPTEwJmZwLXg9\/MC41JmZwLXk9MC41\/JnM9Yzg3MTA3NGFl\/YWZjYTcyNWU1MmQw\/YmJlNzI0MmU3MzE","original":"https:\/\/img.evbuc.com\/https%3A%2F%2Fcdn.evbuc.com%2Fimages%2F1150660193%2F975057858293%2F1%2Foriginal.20251011-121858?crop=focalpoint&fit=crop&w=1000&auto=format%2Ccompress&q=75&sharp=10&fp-x=0.5&fp-y=0.5&s=c871074aeafca725e52d0bbe7242e731","logo":false}},{"title":"Ai Summit Fall 2024: AI for Everyone | Silicon Valley and Online Tickets, Sat, Oct 26, 2024 at 8:00 AM | Eventbrite","url":"https:\/\/www.eventbrite.com\/e\/ai-summit-fall-2024-ai-for-everyone-silicon-valley-and-online-tickets-906964243467","is_source_local":false,"is_source_both":false,"description":"Eventbrite - Ai Summit | TechEquity Ai presents Ai Summit Fall 2024: AI for Everyone | Silicon Valley and Online - <strong>Saturday, October 26, 2024 at Computer History Museum, Mountain View, CA<\/strong>. Find event and ticket information.","page_age":"2024-05-15T10:41:03","profile":{"name":"Eventbrite","url":"https:\/\/www.eventbrite.com\/e\/ai-summit-fall-2024-ai-for-everyone-silicon-valley-and-online-tickets-906964243467","long_name":"eventbrite.com","img":"https:\/\/imgs.search.brave.com\/V6HhIbcDRuDH0HdGUGCVpMvPm8VUhv_Zc9LAmc-MsEY\/rs:fit:32:32:1:0\/g:ce\/aHR0cDovL2Zhdmlj\/b25zLnNlYXJjaC5i\/cmF2ZS5jb20vaWNv\/bnMvNzc4OGE0Yjc5\/MzFkZjljYWMxMGYw\/N2U0ZWJlNGQ0OGE3\/NzM5NThlMjljMGFk\/NjQxOTQ2ZjQ5Yjdm\/OWU5Mzc4MC93d3cu\/ZXZlbnRicml0ZS5j\/b20v"},"language":"en","family_friendly":true,"type":"search_result","subtype":"faq","is_live":false,"meta_url":{"scheme":"https","netloc":"eventbrite.com","hostname":"www.eventbrite.com","favicon":"https:\/\/imgs.search.brave.com\/V6HhIbcDRuDH0HdGUGCVpMvPm8VUhv_Zc9LAmc-MsEY\/rs:fit:32:32:1:0\/g:ce\/aHR0cDovL2Zhdmlj\/b25zLnNlYXJjaC5i\/cmF2ZS5jb20vaWNv\/bnMvNzc4OGE0Yjc5\/MzFkZjljYWMxMGYw\/N2U0ZWJlNGQ0OGE3\/NzM5NThlMjljMGFk\/NjQxOTQ2ZjQ5Yjdm\/OWU5Mzc4MC93d3cu\/ZXZlbnRicml0ZS5j\/b20v","path":" \u203a united states events \u203a california events \u203a things to do in mountain view, ca \u203a mountain view conferences \u203a mountain view science & tech conferences \u203a #community \u203a #technology \u203a #meetup \u203a #ai \u203a #diversity \u203a #conference \u203a #summit \u203a #artificial_intelligence \u203a #networking_event \u203a #conference2024"},"thumbnail":{"src":"https:\/\/imgs.search.brave.com\/BTdcSNKjluL_bqroA17rzkOSXzTJMfxJZlV3oeqomCI\/rs:fit:200:200:1:0\/g:ce\/aHR0cHM6Ly9jZG4u\/ZXZidWMuY29tL2lt\/YWdlcy84NTUwNTkz\/NzkvMTk1NDAyNzQ2\/OTUxMy8xL2xvZ28u\/MjAyNDA5MjAtMDQz\/MDEz","original":"https:\/\/cdn.evbuc.com\/images\/855059379\/1954027469513\/1\/logo.20240920-043013","logo":true},"age":"May 15, 2024"},{"title":"AI Dev 25 x NYC - The AI Developer Conference Tickets, Fri, Nov 14, 2025 at 8:00 AM | Eventbrite","url":"https:\/\/www.eventbrite.com\/e\/ai-dev-25-x-nyc-the-ai-developer-conference-tickets-1583028543989","is_source_local":false,"is_source_both":false,"description":"Eventbrite - DeepLearning.AI presents <strong>AI Dev 25 x NYC - The AI Developer Conference<\/strong> - Friday, November 14, 2025 at Convene Brookfield Place, 225 Liberty, New York, NY. Find event and ticket information.","profile":{"name":"Eventbrite","url":"https:\/\/www.eventbrite.com\/e\/ai-dev-25-x-nyc-the-ai-developer-conference-tickets-1583028543989","long_name":"eventbrite.com","img":"https:\/\/imgs.search.brave.com\/V6HhIbcDRuDH0HdGUGCVpMvPm8VUhv_Zc9LAmc-MsEY\/rs:fit:32:32:1:0\/g:ce\/aHR0cDovL2Zhdmlj\/b25zLnNlYXJjaC5i\/cmF2ZS5jb20vaWNv\/bnMvNzc4OGE0Yjc5\/MzFkZjljYWMxMGYw\/N2U0ZWJlNGQ0OGE3\/NzM5NThlMjljMGFk\/NjQxOTQ2ZjQ5Yjdm\/OWU5Mzc4MC93d3cu\/ZXZlbnRicml0ZS5j\/b20v"},"language":"en","family_friendly":true,"type":"search_result","subtype":"generic","is_live":false,"meta_url":{"scheme":"https","netloc":"eventbrite.com","hostname":"www.eventbrite.com","favicon":"https:\/\/imgs.search.brave.com\/V6HhIbcDRuDH0HdGUGCVpMvPm8VUhv_Zc9LAmc-MsEY\/rs:fit:32:32:1:0\/g:ce\/aHR0cDovL2Zhdmlj\/b25zLnNlYXJjaC5i\/cmF2ZS5jb20vaWNv\/bnMvNzc4OGE0Yjc5\/MzFkZjljYWMxMGYw\/N2U0ZWJlNGQ0OGE3\/NzM5NThlMjljMGFk\/NjQxOTQ2ZjQ5Yjdm\/OWU5Mzc4MC93d3cu\/ZXZlbnRicml0ZS5j\/b20v","path":"\u203a e \u203a ai-dev-25-x-nyc-the-ai-developer-conference-tickets-1583028543989"},"thumbnail":{"src":"https:\/\/imgs.search.brave.com\/pKXfXBbiaJQzgStvRLvI9TiAHNyYDNk0wFvEIzk_5WE\/rs:fit:200:200:1:0\/g:ce\/aHR0cHM6Ly93d3cu\/ZXZlbnRicml0ZS5j\/b20vZS9fbmV4dC9p\/bWFnZT91cmw9aHR0\/cHMlM0ElMkYlMkZp\/bWcuZXZidWMuY29t\/JTJGaHR0cHMlMjUz\/QSUyNTJGJTI1MkZj\/ZG4uZXZidWMuY29t\/JTI1MkZpbWFnZXMl\/MjUyRjEwOTQwNzQ5\/NTMlMjUyRjI2MTI4\/MjY4MzkzMyUyNTJG\/MSUyNTJGb3JpZ2lu\/YWwuMjAyNTA4MTIt\/MTg0MzAzJTNGY3Jv\/cCUzRGZvY2FscG9p\/bnQlMjZmaXQlM0Rj\/cm9wJTI2dyUzRDQ4\/MCUyNmF1dG8lM0Rm\/b3JtYXQlMjUyQ2Nv\/bXByZXNzJTI2cSUz\/RDc1JTI2c2hhcnAl\/M0QxMCUyNmZwLXgl\/M0QwLjAwMDkwOTA5\/MDkwOTA5MSUyNmZw\/LXklM0QwLjAwMzE0\/Mjg1NzE0Mjg2JTI2\/cyUzRDk4NDBiYTBm\/MjE1NmIxZmZiZTVk\/Njc2MjJiNThjMTIx\/JmFtcDt3PTk0MCZh\/bXA7cT03NQ","original":"https:\/\/www.eventbrite.com\/e\/_next\/image?url=https%3A%2F%2Fimg.evbuc.com%2Fhttps%253A%252F%252Fcdn.evbuc.com%252Fimages%252F1094074953%252F261282683933%252F1%252Foriginal.20250812-184303%3Fcrop%3Dfocalpoint%26fit%3Dcrop%26w%3D480%26auto%3Dformat%252Ccompress%26q%3D75%26sharp%3D10%26fp-x%3D0.000909090909091%26fp-y%3D0.00314285714286%26s%3D9840ba0f2156b1ffbe5d67622b58c121&w=940&q=75","logo":false}},{"title":"Design in the Age of AI: GenAI Interfaces & Turning AI Anxiety to Advantage Tickets, Tue, Aug 26, 2025 at 5:45 PM | Eventbrite","url":"https:\/\/www.eventbrite.com\/e\/design-in-the-age-of-ai-genai-interfaces-turning-ai-anxiety-to-advantage-tickets-1439952048339","is_source_local":false},{"_note":"Response truncated for documentation purposes"}]
curl --location --request GET 'https://zylalabs.com/api/6435/eventbrite+api/21735/search?q=AI events&count=10' --header 'Authorization: Bearer YOUR_API_KEY'
pesquisa avançada
Pesquisa Avançada - Recursos do endpoint
| Objeto | Descrição |
|---|---|
q |
[Obrigatório] |
location |
Opcional for example: brooklyn |
category |
Opcional You could use category name here |
start |
Opcional Pagination: Use start as offset (e.g., 1, 11, 21...). |
limit |
Opcional alues from 1 to 10 only. |
{
"query": "AI events in New York",
"results": [
{
"title": "AI Dev 25 x NYC - The AI Developer Conference Tickets, Fri, Nov 14 ...",
"link": "https:\/\/www.eventbrite.com\/e\/ai-dev-25-x-nyc-the-ai-developer-conference-tickets-1583028543989",
"snippet": "Eventbrite - DeepLearning.AI presents AI Dev 25 x NYC - The AI Developer Conference - Friday, November 14, 2025 at Convene Brookfield Place, 225 Liberty,\u00a0..."
},
{
"title": "New York Health Innovation Night on AI in Healthcare Registration ...",
"link": "https:\/\/www.eventbrite.com\/e\/new-york-health-innovation-night-on-ai-in-healthcare-registration-1278575205859",
"snippet": "Eventbrite - Steven Wardell presents New York Health Innovation Night on AI in Healthcare - Tuesday, April 1, 2025 at The Globe Bar, New York, NY. Find event"
},
{
"title": "NYC AI Users - AI Talks, Demo & Social: VLMs and AI in the ...",
"link": "https:\/\/www.eventbrite.com\/e\/nyc-ai-users-ai-talks-demo-social-vlms-and-ai-in-the-creative-process-tickets-1227821881299",
"snippet": "... AI in the Creative Process - Wednesday, February 26, 2025 at Viam Robotics, New York, NY. Find event and ticket information."
},
{
"title": "AI Summit NYC: The Technology Conference For Non-Tech ...",
"link": "https:\/\/www.eventbrite.com\/e\/ai-summit-nyc-the-technology-conference-for-non-tech-professionals-registration-883778765077",
"snippet": "Eventbrite - Chris Dessi presents AI Summit NYC: The Technology Conference For Non-Tech Professionals - Thursday, May 15, 2025 at Cornell Tech, New York,\u00a0..."
},
{
"title": "The AI Enterprise Conference 2026 Tickets, Wed, Sep 2, 2026 at 9 ...",
"link": "https:\/\/www.eventbrite.com\/e\/the-ai-enterprise-conference-2026-tickets-1902063135039",
"snippet": "Eventbrite - Data Science Connect presents The AI Enterprise Conference 2026 - Wednesday, September 2, 2026 at TBA, New York, NY. Find event and ticket\u00a0..."
},
{
"title": "#ProductCon New York: The AI Conference for Product Leaders ...",
"link": "https:\/\/www.eventbrite.com\/e\/productcon-new-york-the-ai-conference-for-product-leaders-tickets-1590852435459",
"snippet": "Get ready to learn about AI in Product from inspirational CPOs, CEOs, and SVPs from global tech giants. Held four times a year in New York,\u00a0..."
},
{
"title": "NEW YORK |AI Driven Events: Elevating Your Biz and Transforming ...",
"link": "https:\/\/www.eventbrite.com\/e\/new-york-ai-driven-events-elevating-your-biz-and-transforming-gatherings-tickets-1308075812969",
"snippet": "Eventbrite - N.S.B.W.E.P. presents NEW YORK |AI Driven Events: Elevating Your Biz and Transforming Gatherings - Tuesday, May 13, 2025 at Carroll Hall,\u00a0..."
},
{
"title": "Ai & Tech Networking New York Brooklyn Tickets, Wed, Dec 11 ...",
"link": "https:\/\/www.eventbrite.com\/e\/ai-tech-networking-new-york-brooklyn-tickets-1083496931489",
"snippet": "Nov 14, 2024 ... Eventbrite - Derun Events presents Ai & Tech Networking New York Brooklyn - Wednesday, December 11, 2024 at Keybar, Brooklyn, NY."
},
{
"title": "Pie & AI: New York\/New Jersey - Agentic AI Agents Tickets, Sun 21 ...",
"link": "https:\/\/www.eventbrite.com\/e\/pie-ai-new-yorknew-jersey-agentic-ai-agents-tickets-1967818365704",
"snippet": "Eventbrite - Pie & AI by DeepLearning.AI community presents Pie & AI: New York\/New Jersey - Agentic AI Agents - Sunday, 21 December 2025 - Find event and\u00a0..."
},
{
"title": "Integrating Blockchain and AI (Artificial Intelligence) | New York City ...",
"link": "https:\/\/www.eventbrite.com\/e\/integrating-blockchain-and-ai-artificial-intelligence-new-york-city-tickets-844203755157",
"snippet": "Eventbrite - Blockchain Smart Solutions presents Integrating Blockchain and AI (Artificial Intelligence) | New York City - Thursday, March 14,\u00a0..."
}
],
"pagination": {
"start": 1,
"limit": 10,
"next_start": 11,
"previous_start": null,
"total_results": "23600"
}
}
curl --location --request GET 'https://zylalabs.com/api/6435/eventbrite+api/21736/advance+search?q=AI&location=brooklyn' --header 'Authorization: Bearer YOUR_API_KEY'
Scraper for Eventbrite event details page.
event details - Recursos do endpoint
| Objeto | Descrição |
|---|---|
url |
[Obrigatório] |
{"name":{"text":"The AI Conference 2024","html":"The AI Conference 2024"},"description":{"text":"The AI Conference 2024 in San Francisco","html":"The AI Conference 2024 in San Francisco"},"url":"https://www.eventbrite.com/e/the-ai-conference-2024-tickets-731490045417","vanity_url":"https://aiconference2024.eventbrite.com","start":{"timezone":"America/Los_Angeles","local":"2024-09-10T08:00:00","utc":"2024-09-10T15:00:00Z"},"end":{"timezone":"America/Los_Angeles","local":"2024-09-11T18:00:00","utc":"2024-09-12T01:00:00Z"},"organization_id":"1314715997713","created":"2023-10-03T22:47:16Z","changed":"2024-09-15T09:36:13Z","published":"2023-10-03T22:58:01Z","capacity":null,"capacity_is_custom":null,"status":"completed","currency":"USD","listed":true,"shareable":true,"online_event":false,"tx_time_limit":1200,"hide_start_date":false,"hide_end_date":false,"locale":"en_US","is_locked":false,"privacy_setting":"unlocked","is_series":false,"is_series_parent":false,"inventory_type":"limited","is_reserved_seating":false,"show_pick_a_seat":false,"show_seatmap_thumbnail":false,"show_colors_in_seatmap_thumbnail":false,"source":"coyote","is_free":false,"version":null,"summary":"The AI Conference 2024 in San Francisco","facebook_event_id":"790315069894753","logo_id":"845815239","organizer_id":"58278754473","venue_id":"177332349","category_id":"102","subcategory_id":"2004","format_id":"1","id":"731490045417","resource_uri":"https://www.eventbriteapi.com/v3/events/731490045417/","is_externally_ticketed":false,"logo":{"crop_mask":null,"original":{"url":"https://img.evbuc.com/https%3A%2F%2Fcdn.evbuc.com%2Fimages%2F845815239%2F2163033370723%2F1%2Foriginal.20240909-200542?auto=format%2Ccompress&q=75&sharp=10&s=041acba4105c4d5d025d91d560930224","width":4500,"height":2250},"id":"845815239","url":"https://img.evbuc.com/https%3A%2F%2Fcdn.evbuc.com%2Fimages%2F845815239%2F2163033370723%2F1%2Foriginal.20240909-200542?crop=focalpoint&fit=crop&h=200&w=450&auto=format%2Ccompress&q=75&sharp=10&fp-x=0.539772727273&fp-y=0.451492537313&s=da08111fce3d3b1cfe6b5fcf8ab72da4","aspect_ratio":"2","edge_color":"#ffffff","edge_color_set":true}}
curl --location --request GET 'https://zylalabs.com/api/6435/eventbrite+api/9258/event+details?url=https://www.eventbrite.com/e/the-ai-conference-2024-tickets-731490045417' --header 'Authorization: Bearer YOUR_API_KEY'
Scraper for Eventbrite search events result.
events list - Recursos do endpoint
| Objeto | Descrição |
|---|---|
url |
[Obrigatório] |
{"original_status":200,"pc_status":200,"url":"https://www.eventbrite.com/d/ny--new-york/ai/","body":{"title":"Ai events in New York, NY","location":"New York","breadCrumbs":[{"name":"Home","link":"https://www.eventbrite.com/"},{"name":"United States","link":"https://www.eventbrite.com/d/united-states/events/"},{"name":"New York","link":"https://www.eventbrite.com/d/ny--new-york/events/"},{"name":"Ai Events","link":"https://www.eventbrite.com"}],"events":[{"position":1,"title":"NMDSI Symposium - Navigating AI: Transforming Industries and Careers","image":"https://img.evbuc.com/https%3A%2F%2Fcdn.evbuc.com%2Fimages%2F964619823%2F472136528829%2F1%2Foriginal.20250219-191042?h=230\u0026w=460\u0026auto=format%2Ccompress\u0026q=75\u0026sharp=10\u0026s=348ee7de3437ade9568c0f9cc096ab6e","link":"https://www.eventbrite.com/e/nmdsi-symposium-navigating-ai-transforming-industries-and-careers-tickets-1254662592589?aff=ebdssbdestsearch","dateTime":"Tue, Apr 15, 9:00 AM","location":"Marquette University | Alumni Memorial Union | Third Floor Ballroom","price":"Free","eventSignal":"Sales end soon"},{"position":2,"title":"Build a 6-Figure Coaching Offer That Sells Itself With AI and Automation","image":"https://img.evbuc.com/https%3A%2F%2Fcdn.evbuc.com%2Fimages%2F1001798863%2F110948372931%2F1%2Foriginal.20250405-202012?crop=focalpoint\u0026fit=crop\u0026h=230\u0026w=460\u0026auto=format%2Ccompress\u0026q=75\u0026sharp=10\u0026fp-x=0.506691556988\u0026fp-y=0.468814419401\u0026s=6519804426b30091ccbe172a27ed5b0f","link":"https://www.eventbrite.com/e/build-a-6-figure-coaching-offer-that-sells-itself-with-ai-and-automation-tickets-1314151224689?aff=ebdssbdestsearch","dateTime":"Wed, Apr 16, 1:00 PM PDT","location":"Wed, Apr 16, 1:00 PM PDT","price":"Free","eventSignal":"Just added"},{"position":3,"title":"Transform Your Ministry with AI: Training for Ministry Leaders","image":"https://img.evbuc.com/https%3A%2F%2Fcdn.evbuc.com%2Fimages%2F939754243%2F2584433470351%2F1%2Foriginal.png?h=230\u0026w=460\u0026auto=format%2Ccompress\u0026q=75\u0026sharp=10\u0026rect=0%2C0%2C940%2C470\u0026s=67225053f40ea35810dab3a3c62c642d","link":"https://www.eventbrite.com/e/transform-your-ministry-with-ai-training-for-ministry-leaders-tickets-1301201732409?aff=ebdssbdestsearch","dateTime":"Tue, Apr 15, 9:30 AM PDT","location":"Tue, Apr 15, 9:30 AM PDT","price":"Free","eventSignal":""},{"position":4,"title":"Algorythm+ | Intro to Emotion AI","image":"https://img.evbuc.com/https%3A%2F%2Fcdn.evbuc.com%2Fimages%2F824989259%2F262347974128%2F1%2Foriginal.jpg?w=512\u0026auto=format%2Ccompress\u0026q=75\u0026sharp=10\u0026rect=0%2C0%2C2160%2C1080\u0026s=b365aa5e50c77eabab13c655e953d641","link":"https://www.eventbrite.com/e/algorythm-intro-to-emotion-ai-tickets-1314348254009?aff=ebdssbdestsearch","dateTime":"Thu, May 15, 7:00 PM","location":"New York","price":"","eventSignal":""},{"position":5,"title":"AI Networking: Connect with Engineers, Researchers, and Data Innovators","image":"https://img.evbuc.com/https%3A%2F%2Fcdn.evbuc.com%2Fimages%2F972374473%2F265715930943%2F1%2Foriginal.20250301-021117?crop=focalpoint\u0026fit=crop\u0026auto=format%2Ccompress\u0026q=75\u0026sharp=10\u0026fp-x=4.05303030303e-05\u0026fp-y=5.16393442623e-05\u0026s=7e8f6819bd4d19de2002650054021a63","link":"https://www.eventbrite.com/e/ai-networking-connect-with-engineers-researchers-and-data-innovators-tickets-1144292873789?aff=ebdssbdestsearch","dateTime":"Thu, May 1, 7:00 PM","location":"Planet Hollywood New York","price":"","eventSignal":""},{"position":6,"title":"AI Gala","image":"https://img.evbuc.com/https%3A%2F%2Fcdn.evbuc.com%2Fimages%2F962770063%2F2603806498871%2F1%2Foriginal.20250217-211412?crop=focalpoint\u0026fit=crop\u0026w=355\u0026auto=format%2Ccompress\u0026q=75\u0026sharp=10\u0026fp-x=0.5\u0026fp-y=0.5\u0026s=270210e86503f2e8779313f074562c55","link":"https://www.eventbrite.com/e/ai-gala-tickets-1252343636529?aff=ebdssbdestsearch","dateTime":"Sat, May 17, 6:00 PM","location":"The Pierre, A Taj Hotel, New York","price":"","eventSignal":""},{"position":7,"title":"AI x Planet: threat or opportunity?","image":"https://img.evbuc.com/https%3A%2F%2Fcdn.evbuc.com%2Fimages%2F1002296703%2F382633585383%2F1%2Foriginal.20250406-235028?crop=focalpoint\u0026fit=crop\u0026auto=format%2Ccompress\u0026q=75\u0026sharp=10\u0026fp-x=0.5\u0026fp-y=0.5\u0026s=9cb7b821b315dfdf63a0a3cdc848f773","link":"https://www.eventbrite.com/e/ai-x-planet-threat-or-opportunity-tickets-1303612462969?aff=ebdssbdestsearch","dateTime":"Tue, May 13, 6:00 PM","location":"Eat Offbeat","price":"","eventSignal":""},{"position":8,"title":"The Information’s Financing the AI Revolution","image":"https://img.evbuc.com/https%3A%2F%2Fcdn.evbuc.com%2Fimages%2F988930903%2F143743301651%2F1%2Foriginal.20250320-205445?crop=focalpoint\u0026fit=crop\u0026auto=format%2Ccompress\u0026q=75\u0026sharp=10\u0026fp-x=0.005\u0026fp-y=0.005\u0026s=1daa2ceef55e43880aaaf0dd6a87a10b","link":"https://www.eventbrite.com/e/the-informations-financing-the-ai-revolution-tickets-1224052266279?aff=ebdssbdestsearch","dateTime":"Mon, Apr 28, 2:00 PM","location":"New York Stock Exchange","price":"","eventSignal":""},{"position":9,"title":"Decentralized AI","image":"https://img.evbuc.com/https%3A%2F%2Fcdn.evbuc.com%2Fimages%2F1000230483%2F7179081239%2F1%2Foriginal.20250403-175447?w=355\u0026auto=format%2Ccompress\u0026q=75\u0026sharp=10\u0026s=326a0f5033b3ed65b218643cff7fc759","link":"https://www.eventbrite.com/e/decentralized-ai-tickets-1312070771999?aff=ebdssbdestsearch","dateTime":"Thu, Apr 24, 5:30 PM","location":"Civic Hall","price":"","eventSignal":""},{"position":10,"title":"Network with AI Experts: Researchers, Engineers, and ML Innovators Unite","image":"https://img.evbuc.com/https%3A%2F%2Fcdn.evbuc.com%2Fimages%2F972374983%2F282824214449%2F1%2Foriginal.20250301-021202?crop=focalpoint\u0026fit=crop\u0026w=512\u0026auto=format%2Ccompress\u0026q=75\u0026sharp=10\u0026fp-x=4.64962121212e-05\u0026fp-y=5.13114754098e-05\u0026s=a2584411f55b53f664db4e1331ce4f39","link":"https://www.eventbrite.com/e/network-with-ai-experts-researchers-engineers-and-ml-innovators-unite-tickets-1144292964059?aff=ebdssbdestsearch","dateTime":"Thu, May 1, 7:00 PM","location":"Planet Hollywood New York","price":"","eventSignal":""},{"position":11,"title":"Robotics \u0026 AI Networking: Shaping Intelligent Tech| Planet Hollywood","image":"https://img.evbuc.com/https%3A%2F%2Fcdn.evbuc.com%2Fimages%2F972375273%2F283716994467%2F1%2Foriginal.20250301-021255?crop=focalpoint\u0026fit=crop\u0026w=400\u0026auto=format%2Ccompress\u0026q=75\u0026sharp=10\u0026fp-x=0.454545454545\u0026fp-y=0.55737704918\u0026s=dfa7dc0c6eeba2f1a42c4d3bd8392d5c","link":"https://www.eventbrite.com/e/robotics-ai-networking-shaping-intelligent-tech-planet-hollywood-tickets-1144292974089?aff=ebdssbdestsearch","dateTime":"Thu, May 1, 7:00 PM","location":"Planet Hollywood New York","price":"","eventSignal":""},{"position":12,"title":"NEW YORK |AI Driven Events: Elevating Your Biz and Transforming Gatherings","image":"https://img.evbuc.com/https%3A%2F%2Fcdn.evbuc.com%2Fimages%2F997799563%2F522949557499%2F1%2Foriginal.20250401-134449?crop=focalpoint\u0026fit=crop\u0026auto=format%2Ccompress\u0026q=75\u0026sharp=10\u0026fp-x=0.465593627455\u0026fp-y=0.362252766056\u0026s=5d0e0a777ccf8c270680f8dc82fa1ad3","link":"https://www.eventbrite.com/e/new-york-ai-driven-events-elevating-your-biz-and-transforming-gatherings-tickets-1308075812969?aff=ebdssbdestsearch","dateTime":"Tue, May 13, 6:00 PM","location":"Carroll Hall","price":"","eventSignal":""},{"position":13,"title":"AI \u0026 ML Networking: Shaping Intelligent Systems | Planet Hollywood","image":"https://img.evbuc.com/https%3A%2F%2Fcdn.evbuc.com%2Fimages%2F931572923%2F283703784641%2F1%2Foriginal.20250109-155128?w=351\u0026auto=format%2Ccompress\u0026q=75\u0026sharp=10\u0026s=6fafcd30478a15bfdf606bd89f076001","link":"https://www.eventbrite.com/e/ai-ml-networking-shaping-intelligent-systems-planet-hollywood-tickets-1144270115719?aff=ebdssbdestsearch","dateTime":"Thu, May 1, 7:00 PM","location":"Planet Hollywood New York","price":"","eventSignal":""},{"position":14,"title":"AI Community Conference - New York","image":"https://img.evbuc.com/https%3A%2F%2Fcdn.evbuc.com%2Fimages%2F976656363%2F217846137705%2F1%2Foriginal.20250306-042219?crop=focalpoint\u0026fit=crop\u0026auto=format%2Ccompress\u0026q=75\u0026sharp=10\u0026fp-x=0.5\u0026fp-y=0.5\u0026s=26567a9aa1b8c10f64856a0a9135d2cc","link":"https://www.eventbrite.com/e/ai-community-conference-new-york-tickets-1271865868049?aff=ebdssbdestsearch","dateTime":"Thu, Jun 5, 10:00 AM","location":"Microsoft","price":"","eventSignal":""},{"position":15,"title":"AI Implementation in Business | New York City","image":"https://img.evbuc.com/https%3A%2F%2Fcdn.evbuc.com%2Fimages%2F845106079%2F2309330230023%2F1%2Foriginal.20240909-050009?crop=focalpoint\u0026fit=crop\u0026w=355\u0026auto=format%2Ccompress\u0026q=75\u0026sharp=10\u0026fp-x=0.49053030303\u0026fp-y=0.473880597015\u0026s=6b3b9998d4219e42b26ec06354697f4c","link":"https://www.eventbrite.com/e/ai-implementation-in-business-new-york-city-tickets-1012558980167?aff=ebdssbdestsearch","dateTime":"Wed, Apr 23, 1:00 PM + 37 more","location":"New York","price":"","eventSignal":""},{"position":16,"title":"AI/ML Networking Night: For Engineers, Researchers, and Product Managers","image":"https://img.evbuc.com/https%3A%2F%2Fcdn.evbuc.com%2Fimages%2F972375873%2F4989400019%2F1%2Foriginal.20250301-021414?crop=focalpoint\u0026fit=crop\u0026auto=format%2Ccompress\u0026q=75\u0026sharp=10\u0026fp-x=0.00437158469945\u0026fp-y=0.00405684944969\u0026s=ddc455013634f4a4aee00fbdbb93ceb5","link":"https://www.eventbrite.com/e/aiml-networking-night-for-engineers-researchers-and-product-managers-tickets-1144292793549?aff=ebdssbdestsearch","dateTime":"Thu, May 1, 7:00 PM","location":"Planet Hollywood New York","price":"","eventSignal":""},{"position":17}]},"_note":"Response truncated for documentation purposes"}
curl --location --request GET 'https://zylalabs.com/api/6435/eventbrite+api/9259/events+list?url=Required' --header 'Authorization: Bearer YOUR_API_KEY'
| Cabeçalho | Descrição |
|---|---|
Authorization
|
[Obrigatório] Deve ser Bearer access_key. Veja "Sua chave de acesso à API" acima quando você estiver inscrito. |
Sem compromisso de longo prazo. Faça upgrade, downgrade ou cancele a qualquer momento. O teste gratuito inclui até 50 requisições.
The "GET event details" endpoint returns comprehensive information about a specific event, including title, description, price, date/time, location, and organizer details. The "GET events list" endpoint provides a list of events based on search criteria, including event titles, images, links, and general event information.
Key fields in the "GET event details" response include title, description, price, dateTime, and eventOrganizer. For the "GET events list," important fields include title, image, link, and location, along with an array of events.
The response data is structured in JSON format. Each endpoint returns a main object containing status codes and a body object. The body includes relevant event details or a list of events, organized in arrays for easy access.
The "GET event details" endpoint provides in-depth information about a single event, while the "GET events list" endpoint offers a collection of events filtered by location or category, including titles, images, and links to event pages.
The "GET events list" endpoint accepts a URL parameter to specify the search criteria, such as location or category. The "GET event details" endpoint requires a URL parameter pointing to the specific event for detailed information.
Users can customize requests by modifying the URL parameter in the "GET events list" endpoint to target specific locations or categories. For detailed event information, users should provide the exact event URL in the "GET event details" request.
Typical use cases include creating event aggregation platforms, personalized event calendars, automated newsletters, and social media integrations. Developers can leverage the API to enhance user engagement with relevant event information.
Data accuracy is maintained through direct integration with Eventbrite's platform, ensuring real-time updates. The API retrieves information directly from Eventbrite, which regularly updates event details, helping to ensure users receive the most current data.
O Zyla API Hub é como uma grande loja de APIs, onde você pode encontrar milhares delas em um só lugar. Também oferecemos suporte dedicado e monitoramento em tempo real de todas as APIs. Após se cadastrar, você pode escolher quais APIs deseja usar. Lembre-se apenas de que cada API precisa de sua própria assinatura. Mas se você se inscrever em várias, usará a mesma chave para todas elas, facilitando as coisas para você.
Os preços são listados em USD (Dólar Americano), EUR (Euro), CAD (Dólar Canadense), AUD (Dólar Australiano) e GBP (Libra Esterlina). Aceitamos todos os principais cartões de débito e crédito. Nosso sistema de pagamento usa a mais recente tecnologia de segurança e é operado pela Stripe, uma das empresas de pagamento mais confiáveis do mundo. Se tiver problemas para pagar com cartão, entre em contato conosco em [email protected]
Além disso, se você já tiver uma assinatura ativa em qualquer uma dessas moedas (USD, EUR, CAD, AUD, GBP), essa moeda será mantida para assinaturas subsequentes. Você pode alterar a moeda a qualquer momento, desde que não tenha assinaturas ativas.
A moeda local exibida na página de preços é baseada no país do seu endereço IP e é fornecida apenas como referência. Os preços reais são em USD (Dólar Americano). Ao efetuar o pagamento, a cobrança aparecerá no extrato do seu cartão em USD, mesmo que você veja o valor equivalente em sua moeda local em nosso site. Isso significa que você não pode pagar diretamente com sua moeda local.
Ocasionalmente, o banco pode recusar a cobrança devido às configurações de proteção contra fraude. Sugerimos contatar seu banco inicialmente para verificar se estão bloqueando nossas cobranças. Você também pode acessar o Portal de Cobrança e alterar o cartão associado para realizar o pagamento. Se isso não funcionar e precisar de mais ajuda, entre em contato com nossa equipe em [email protected]
Os preços são determinados por uma assinatura recorrente mensal ou anual, dependendo do plano escolhido.
As chamadas de API são descontadas do seu plano com base nas requisições bem-sucedidas. Cada plano possui um número específico de chamadas por mês. Apenas chamadas bem-sucedidas, indicadas por uma resposta com Status 200, serão contabilizadas, garantindo que falhas não afetem sua cota mensal.
O Zyla API Hub funciona com um sistema de assinatura mensal recorrente. Seu ciclo de cobrança começa no dia em que você compra um dos planos pagos e será renovado no mesmo dia do mês seguinte. Portanto, cancele sua assinatura com antecedência se quiser evitar cobranças futuras.
Para fazer upgrade do seu plano atual, acesse a página de preços da API e selecione o novo plano desejado. O upgrade é instantâneo, permitindo aproveitar imediatamente os recursos do novo plano. Observe que as chamadas restantes do plano anterior não serão transferidas; você será cobrado pelo valor integral do novo plano.
Para verificar quantas chamadas de API restam para o mês atual, consulte o campo 'X-Zyla-API-Calls-Monthly-Remaining' no cabeçalho da resposta. Por exemplo, se seu plano permite 1.000 requisições por mês e você usou 100, este campo no cabeçalho da resposta indicará 900 chamadas restantes.
Para ver o número máximo de requisições de API que seu plano permite, verifique o cabeçalho de resposta 'X-Zyla-RateLimit-Limit'. Por exemplo, se seu plano inclui 1.000 requisições por mês, este cabeçalho exibirá 1.000.
O cabeçalho 'X-Zyla-RateLimit-Reset' mostra o número de segundos até seu limite de taxa ser redefinido. Isso informa quando sua contagem de requisições começará do zero. Por exemplo, se exibir 3.600, significa que restam 3.600 segundos até o limite ser redefinido.
Sim, você pode cancelar seu plano a qualquer momento acessando sua conta e selecionando a opção de cancelamento na página de Cobrança. Observe que upgrades, downgrades e cancelamentos têm efeito imediato. Além disso, após o cancelamento, você não terá mais acesso ao serviço, mesmo que ainda tenha chamadas restantes na sua cota.
Você pode nos contatar via chat para receber assistência imediata. Estamos online de 8h às 17h (EST). Se nos contatar após esse horário, retornaremos o mais rápido possível. Além disso, você pode enviar um e-mail para [email protected]
Para oferecer a oportunidade de experimentar nossas APIs sem compromisso, oferecemos um teste gratuito de 7 dias que permite realizar até 50 chamadas de API sem custo. Esse teste pode ser usado apenas uma vez; recomendamos aplicá-lo à API que mais interessa. Embora a maioria das APIs ofereça teste gratuito, algumas podem não oferecer. O teste termina após 7 dias ou quando você atingir 50 requisições, o que ocorrer primeiro. Se atingir o limite, será necessário "Iniciar seu plano pago" para continuar. Você encontra esse botão no perfil em Assinatura -> Escolha a API -> aba Preços. Se não cancelar até o 7º dia, sua assinatura será cobrada automaticamente, liberando todas as chamadas do plano.
Após 7 dias, será cobrado o valor total do plano ao qual você estava inscrito durante o teste. Portanto, é importante cancelar antes do término do período. Solicitações de reembolso por esquecimento de cancelamento não são aceitas.
Ao assinar um teste gratuito de API, você pode fazer até 50 chamadas. Se desejar fazer chamadas adicionais além desse limite, a API solicitará que você "Inicie seu plano pago". Você encontra o botão no perfil em Assinatura -> Escolha a API -> aba Preços.
As Ordens de Pagamento são processadas entre os dias 20 e 30 de cada mês. Se você enviar sua solicitação antes do dia 20, seu pagamento será processado dentro desse período.
Nível de serviço:
100%
Tempo de resposta:
1.170ms
Nível de serviço:
100%
Tempo de resposta:
1.039ms
Nível de serviço:
100%
Tempo de resposta:
455ms
Nível de serviço:
100%
Tempo de resposta:
245ms
Nível de serviço:
100%
Tempo de resposta:
109ms
Nível de serviço:
100%
Tempo de resposta:
549ms
Nível de serviço:
100%
Tempo de resposta:
597ms
Nível de serviço:
100%
Tempo de resposta:
6.448ms
Nível de serviço:
100%
Tempo de resposta:
1.615ms
Nível de serviço:
100%
Tempo de resposta:
6.448ms
Nível de serviço:
100%
Tempo de resposta:
1.136ms
Nível de serviço:
100%
Tempo de resposta:
289ms
Nível de serviço:
100%
Tempo de resposta:
492ms
Nível de serviço:
100%
Tempo de resposta:
489ms
Nível de serviço:
100%
Tempo de resposta:
1.852ms
Nível de serviço:
100%
Tempo de resposta:
413ms
Nível de serviço:
100%
Tempo de resposta:
1.138ms
Nível de serviço:
100%
Tempo de resposta:
482ms
Nível de serviço:
100%
Tempo de resposta:
7.263ms
Nível de serviço:
100%
Tempo de resposta:
1.337ms