App バージョン履歴
curl --request GET \
--url https://api.example.com/v1/data-apps/{app_id}/versionsimport requests
url = "https://api.example.com/v1/data-apps/{app_id}/versions"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v1/data-apps/{app_id}/versions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v1/data-apps/{app_id}/versions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v1/data-apps/{app_id}/versions"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/v1/data-apps/{app_id}/versions")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/data-apps/{app_id}/versions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"items": [
{
"version": "<string>",
"yanked": true,
"created_at": "<string>",
"build_id": "<string>"
}
]
}Discovery
App バージョン履歴
公開済みバージョン一覧。新しい順。
GET
/
v1
/
data-apps
/
{app_id}
/
versions
App バージョン履歴
curl --request GET \
--url https://api.example.com/v1/data-apps/{app_id}/versionsimport requests
url = "https://api.example.com/v1/data-apps/{app_id}/versions"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v1/data-apps/{app_id}/versions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v1/data-apps/{app_id}/versions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v1/data-apps/{app_id}/versions"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/v1/data-apps/{app_id}/versions")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/data-apps/{app_id}/versions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"items": [
{
"version": "<string>",
"yanked": true,
"created_at": "<string>",
"build_id": "<string>"
}
]
}GET https://api-datahub.octoparse.com/v1/data-apps/{app_id}/versions
認証:任意。API キーがあればログイン必須ビューの App も見える場合があります。
公開済み全バージョン。新しい順。詳細・実行は既定で最新。version で過去 Release 固定。
yank 済みも履歴に残りフラグ付き。latest 解決対象外で新規実行拒否。既存結果データは読める。
リクエスト
パスパラメータ
string
必須
App 参照:
app_<hex> または <namespace>/<app_name>。リクエスト例
curl -H "Authorization: Bearer $OCTOPARSE_API_KEY" "https://api-datahub.octoparse.com/v1/data-apps/carol/probe-b/versions"
レスポンス
200 成功
{
"data": {
"items": [
{
"version": "0.2.0",
"yanked": false,
"created_at": "2026-09-01T08:00:00+00:00",
"build_id": "bld_123"
}
]
}
}
data に包まれます。フィールド:
array
必須
エラー
| HTTP | code | category | Description |
|---|---|---|---|
| 401 | unauthorized | forbidden | API キー欠落または無効。 |
| 404 | app-not-found | not_found | App が存在しないか不可視。 |
{"error": {code, category, message, retryable}} です。エラー を参照。