EdgeRSU 센싱이력 (제공)

EdgeRSU 센싱정보 수집 이력과 데이터를 제공합니다.

1. EdgeRSU 센싱정보 이력 조회 API (GetEdgeRSUSensingList)

요청 URL

https://service.mqnicrnd5.com/api/v1/ers/offer/gesl

연계 주기

요청 시

프로토콜

HTTPS

HTTP 메서드

GET

데이터 포맷

참고사항

API를 요청할 때 다음 예와 같이 HTTP 요청 헤더에 접근 토큰(Access Token) 을 추가해야 합니다. 접근 토큰 앞에 "Bearer " 문자열을 추가해야 한다는 점에 주의하세요.

> GET /api/v1/ers/offer/gesl?spatialUnitType=MAPNODE&spatialUnitID=2720002800&timestampMin=1723086000&senarioNames=주간,비 HTTP/2
> Host: service.mqnicrnd5.com
> User-Agent: curl/7.64.1
> Accept: */*
> Authorization: Bearer <접근 토큰>

요청 예시

curl --location 'https://service.mqnicrnd5.com/api/v1/ers/offer/gesl?spatialUnitType=MAPNODE&spatialUnitID=2720002800&timestampMin=1723086000&senarioNames=%EC%A3%BC%EA%B0%84%2C%EB%B9%84' \
--header 'Authorization: Bearer <접근 토큰>'

응답 예시

{
    "edgeRsuSensingList": [
        {
            "edgeRsuId": "RSU00001",
            "timestamp": 1723086000,
            "senarioNames": [
                "주간",
                "비"
            ],
            "numFrames": 12,
            "basePath": "RSU00001/20240808120000_20240808125959/archive.zip"
        },
        {
            "edgeRsuId": "RSU00001",
            "timestamp": 1723089600,
            "senarioNames": [
                "주간",
                "맑음"
            ],
            "numFrames": 12,
            "basePath": "RSU00001/20240808130000_20240808135959/archive.zip"
        },
        {
            "edgeRsuId": "RSU00001",
            "timestamp": 1723093200,
            "senarioNames": [
                "주간",
                "맑음"
            ],
            "numFrames": 12,
            "basePath": "RSU00001/20240808140000_20240808145959/archive.zip"
        }
    ]
}

2. EdgeRSU 센싱데이터 압축파일 제공 API (GetSensingData)

요청 URL

https://service.mqnicrnd5.com/api/v1/ers/offer/gsd

연계 주기

요청 시

프로토콜

HTTPS

HTTP 메서드

GET

데이터 포맷

참고사항

API를 요청할 때 다음 예와 같이 HTTP 요청 헤더에 접근 토큰(Access Token) 을 추가해야 합니다. 접근 토큰 앞에 "Bearer " 문자열을 추가해야 한다는 점에 주의하세요.

> GET /api/v1/ers/offer/gsd?filePath=RSU00001/20240808140000_20240808145959/archive.zip HTTP/2
> Host: service.mqnicrnd5.com
> User-Agent: curl/7.64.1
> Accept: */*
> Authorization: Bearer <접근 토큰>

요청 예시

  • filePath 파라미터에 1번 API 응답으로 받은 basePath를 입력합니다.

curl --location 'https://service.mqnicrnd5.com/api/v1/ers/offer/gsd?filePath=RSU00001%2F20240808140000_20240808145959%2Farchive.zip' \
--header 'Authorization: Bearer <접근 토큰>'

응답 예시

Last updated