Skip to content

Latest commit

 

History

History
84 lines (64 loc) · 2.72 KB

File metadata and controls

84 lines (64 loc) · 2.72 KB

EventsApi

All URIs are relative to https://api.unifapi.com

Method HTTP request Description
eventsSearchPost POST /events/search Search Events

eventsSearchPost

EventsSearchPost200Response eventsSearchPost(eventsSearchRequest)

Search Events

Run one live Events search and receive individual events for a query, including title, dates, venue location, ticket links, and a description.

Example

// Import classes:
import com.unifapi.sdk.ApiClient;
import com.unifapi.sdk.ApiException;
import com.unifapi.sdk.Configuration;
import com.unifapi.sdk.auth.*;
import com.unifapi.sdk.models.*;
import com.unifapi.sdk.api.EventsApi;

public class Example {
  public static void main(String[] args) {
    ApiClient defaultClient = Configuration.getDefaultApiClient();
    defaultClient.setBasePath("https://api.unifapi.com");
    
    // Configure HTTP bearer authorization: bearerAuth
    HttpBearerAuth bearerAuth = (HttpBearerAuth) defaultClient.getAuthentication("bearerAuth");
    bearerAuth.setBearerToken("BEARER TOKEN");

    EventsApi apiInstance = new EventsApi(defaultClient);
    EventsSearchRequest eventsSearchRequest = new EventsSearchRequest(); // EventsSearchRequest | 
    try {
      EventsSearchPost200Response result = apiInstance.eventsSearchPost(eventsSearchRequest);
      System.out.println(result);
    } catch (ApiException e) {
      System.err.println("Exception when calling EventsApi#eventsSearchPost");
      System.err.println("Status code: " + e.getCode());
      System.err.println("Reason: " + e.getResponseBody());
      System.err.println("Response headers: " + e.getResponseHeaders());
      e.printStackTrace();
    }
  }
}

Parameters

Name Type Description Notes
eventsSearchRequest EventsSearchRequest [optional]

Return type

EventsSearchPost200Response

Authorization

bearerAuth

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

HTTP response details

Status code Description Response headers
200 OK -
400 Validation or invalid-id error -
401 Missing, invalid, disabled, revoked, or expired UnifAPI API key -
402 Insufficient workspace credits -
404 Resource not found -
429 Rate limited -
500 Internal error -
502 Source error -
503 Source unavailable -