# 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!
busquemos eventos
Buscar - Características del Endpoint
| Objeto | Descripción |
|---|---|
q |
[Requerido] |
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/buscar?q=AI events&count=10' --header 'Authorization: Bearer YOUR_API_KEY'
búsqueda avanzada
Búsqueda Avanzada - Características del Endpoint
| Objeto | Descripción |
|---|---|
q |
[Requerido] |
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/b%c3%basqueda+avanzada?q=AI&location=brooklyn' --header 'Authorization: Bearer YOUR_API_KEY'
Scraper for Eventbrite event details page.
event details - Características del Endpoint
| Objeto | Descripción |
|---|---|
url |
[Requerido] |
{"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 - Características del Endpoint
| Objeto | Descripción |
|---|---|
url |
[Requerido] |
{"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'
| Encabezado | Descripción |
|---|---|
Autorización
|
[Requerido] Debería ser Bearer access_key. Consulta "Tu Clave de Acceso a la API" arriba cuando estés suscrito. |
Sin compromiso a largo plazo. Mejora, reduce o cancela en cualquier momento. La Prueba Gratuita incluye hasta 50 solicitudes.
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.
Zyla API Hub es como una gran tienda de APIs, donde puedes encontrar miles de ellas en un solo lugar. También ofrecemos soporte dedicado y monitoreo en tiempo real de todas las APIs. Una vez que te registres, puedes elegir qué APIs quieres usar. Solo recuerda que cada API necesita su propia suscripción. Pero si te suscribes a varias, usarás la misma clave para todas, lo que hace todo más fácil para ti.
Los precios se muestran en USD (dólar estadounidense), EUR (euro), CAD (dólar canadiense), AUD (dólar australiano) y GBP (libra esterlina). Aceptamos todas las principales tarjetas de débito y crédito. Nuestro sistema de pago utiliza la última tecnología de seguridad y está respaldado por Stripe, una de las compañías de pago más confiables del mundo. Si tienes algún problema para pagar con tarjeta, contáctanos en [email protected]
Además, si ya tienes una suscripción activa en cualquiera de estas monedas (USD, EUR, CAD, AUD, GBP), esa moneda se mantendrá para suscripciones posteriores. Puedes cambiar la moneda en cualquier momento siempre que no tengas suscripciones activas.
La moneda local que aparece en la página de precios se basa en el país de tu dirección IP y se proporciona solo como referencia. Los precios reales están en USD (dólar estadounidense). Cuando realices un pago, el cargo aparecerá en tu estado de cuenta en USD, incluso si ves el monto equivalente en tu moneda local en nuestro sitio web. Esto significa que no puedes pagar directamente en tu moneda local.
Ocasionalmente, un banco puede rechazar el cargo debido a sus configuraciones de protección contra fraude. Te sugerimos comunicarte con tu banco primero para verificar si están bloqueando nuestros cargos. También puedes acceder al Portal de Facturación y cambiar la tarjeta asociada para realizar el pago. Si esto no funciona y necesitas más ayuda, por favor contacta a nuestro equipo en [email protected]
Los precios se determinan mediante una suscripción recurrente mensual o anual, dependiendo del plan elegido.
Las llamadas a la API se descuentan de tu plan en base a solicitudes exitosas. Cada plan incluye una cantidad específica de llamadas que puedes realizar por mes. Solo las llamadas exitosas, indicadas por una respuesta con estado 200, se contarán en tu total. Esto asegura que las solicitudes fallidas o incompletas no afecten tu cuota mensual.
Zyla API Hub funciona con un sistema de suscripción mensual recurrente. Tu ciclo de facturación comenzará el día en que compres uno de los planes de pago, y se renovará el mismo día del mes siguiente. Así que recuerda cancelar tu suscripción antes si quieres evitar futuros cargos.
Para actualizar tu plan de suscripción actual, simplemente ve a la página de precios de la API y selecciona el plan al que deseas actualizarte. La actualización será instantánea, permitiéndote disfrutar inmediatamente de las funciones del nuevo plan. Ten en cuenta que las llamadas restantes de tu plan anterior no se transferirán al nuevo plan, por lo que debes considerar esto al actualizar. Se te cobrará el monto total del nuevo plan.
Para verificar cuántas llamadas a la API te quedan en el mes actual, revisa el campo 'X-Zyla-API-Calls-Monthly-Remaining' en el encabezado de la respuesta. Por ejemplo, si tu plan permite 1,000 solicitudes por mes y has usado 100, este campo mostrará 900 llamadas restantes.
Para ver el número máximo de solicitudes a la API que permite tu plan, revisa el encabezado de la respuesta 'X-Zyla-RateLimit-Limit'. Por ejemplo, si tu plan incluye 1,000 solicitudes por mes, este encabezado mostrará 1,000.
El encabezado 'X-Zyla-RateLimit-Reset' muestra el número de segundos hasta que tu límite se restablezca. Esto te indica cuándo tu conteo de solicitudes se reiniciará. Por ejemplo, si muestra 3,600, significa que faltan 3,600 segundos para que el límite se restablezca.
Sí, puedes cancelar tu plan en cualquier momento desde tu cuenta, seleccionando la opción de cancelación en la página de Facturación. Ten en cuenta que las actualizaciones, degradaciones y cancelaciones tienen efecto inmediato. Además, al cancelar ya no tendrás acceso al servicio, incluso si te quedaban llamadas en tu cuota.
Puedes contactarnos a través de nuestro canal de chat para recibir asistencia inmediata. Siempre estamos en línea de 8 a. m. a 5 p. m. (EST). Si nos contactas fuera de ese horario, te responderemos lo antes posible. Además, puedes escribirnos por correo electrónico a [email protected]
Para darte la oportunidad de probar nuestras APIs sin compromiso, ofrecemos una prueba gratuita de 7 días que te permite realizar hasta 50 llamadas a la API sin costo. Esta prueba solo se puede usar una vez, por lo que recomendamos aplicarla a la API que más te interese. Aunque la mayoría de nuestras APIs ofrecen prueba gratuita, algunas pueden no hacerlo. La prueba finaliza después de 7 días o cuando realices 50 solicitudes, lo que ocurra primero. Si alcanzas el límite de 50 solicitudes durante la prueba, deberás "Iniciar tu Plan de Pago" para continuar haciendo solicitudes. Puedes encontrar el botón "Iniciar tu Plan de Pago" en tu perfil bajo Suscripción -> Elige la API a la que estás suscrito -> Pestaña de Precios. Alternativamente, si no cancelas tu suscripción antes del día 7, tu prueba gratuita finalizará y tu plan se cobrará automáticamente, otorgándote acceso a todas las llamadas a la API especificadas en tu plan. Ten esto en cuenta para evitar cargos no deseados.
Después de 7 días, se te cobrará el monto total del plan al que estabas suscrito durante la prueba. Por lo tanto, es importante cancelar antes de que finalice el periodo de prueba. No se aceptan solicitudes de reembolso por olvidar cancelar a tiempo.
Cuando te suscribes a una prueba gratuita de una API, puedes realizar hasta 50 llamadas. Si deseas realizar más llamadas después de este límite, la API te pedirá que "Inicies tu Plan de Pago". Puedes encontrar el botón "Iniciar tu Plan de Pago" en tu perfil bajo Suscripción -> Elige la API a la que estás suscrito -> Pestaña de Precios.
Las Órdenes de Pago se procesan entre el día 20 y el 30 de cada mes. Si envías tu solicitud antes del día 20, tu pago será procesado dentro de ese período.
Nivel de Servicio:
100%
Tiempo de Respuesta:
1.170ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
1.039ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
455ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
245ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
109ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
549ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
597ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
6.448ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
1.614ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
6.448ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
910ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
910ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
0ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
1.396ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
2.074ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
0ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
1.186ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
910ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
998ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
486ms