Skip to main content
< 뒤로 가기

개요

사용 가능한 작업

  • getV21 - IPOs V2.1 가져오기
  • get - IPOs V2 가져오기

getV21

IPO 데이터를 반환합니다.

사용 예시

package hello.world;

import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetIposV21Request;
import org.benzinga.BZClient.models.operations.GetIposV21Response;

public class Application {

    public static void main(String[] args) throws Exception {

        Bzclient sdk = Bzclient.builder()
                .apiKeyAuth("<YOUR_API_KEY_HERE>")
            .build();

        GetIposV21Request req = GetIposV21Request.builder()
                .build();

        GetIposV21Response res = sdk.ipos().getV21()
                .request(req)
                .call();

        if (res.modelsIPOJSON().isPresent()) {
            // 응답 처리
        }
    }
}

매개변수

매개변수타입필수 여부설명
requestGetIposV21Request:heavy_check_mark:요청에 사용할 객체입니다.

응답

GetIposV21Response

오류

오류 유형상태 코드콘텐츠 유형
models/errors/APIException4XX, 5XX/

get

IPO 관련 데이터를 반환합니다.

사용 예시

package hello.world;

import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetIposV2Request;
import org.benzinga.BZClient.models.operations.GetIposV2Response;

public class Application {

    public static void main(String[] args) throws Exception {

        Bzclient sdk = Bzclient.builder()
                .apiKeyAuth("<YOUR_API_KEY_HERE>")
            .build();

        GetIposV2Request req = GetIposV2Request.builder()
                .build();

        GetIposV2Response res = sdk.ipos().get()
                .request(req)
                .call();

        if (res.modelsIPOJSON().isPresent()) {
            // 응답 처리
        }
    }
}

매개변수

매개변수유형필수 여부설명
requestGetIposV2Request:heavy_check_mark:요청에 사용할 객체입니다.

응답

GetIposV2Response

오류

오류 유형상태 코드콘텐츠 유형
models/errors/APIException4XX, 5XX/