curl --request POST \
--url 'https://api.flashcat.cloud/sourcemap/list?app_key=' \
--header 'Content-Type: application/json' \
--data '
{
"end_time": 1712700000000,
"limit": 20,
"p": 1,
"services": [
"my-web-app"
],
"start_time": 1712000000000,
"type": "browser"
}
'import requests
url = "https://api.flashcat.cloud/sourcemap/list?app_key="
payload = {
"end_time": 1712700000000,
"limit": 20,
"p": 1,
"services": ["my-web-app"],
"start_time": 1712000000000,
"type": "browser"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
end_time: 1712700000000,
limit: 20,
p: 1,
services: ['my-web-app'],
start_time: 1712000000000,
type: 'browser'
})
};
fetch('https://api.flashcat.cloud/sourcemap/list?app_key=', 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.flashcat.cloud/sourcemap/list?app_key=",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'end_time' => 1712700000000,
'limit' => 20,
'p' => 1,
'services' => [
'my-web-app'
],
'start_time' => 1712000000000,
'type' => 'browser'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.flashcat.cloud/sourcemap/list?app_key="
payload := strings.NewReader("{\n \"end_time\": 1712700000000,\n \"limit\": 20,\n \"p\": 1,\n \"services\": [\n \"my-web-app\"\n ],\n \"start_time\": 1712000000000,\n \"type\": \"browser\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.flashcat.cloud/sourcemap/list?app_key=")
.header("Content-Type", "application/json")
.body("{\n \"end_time\": 1712700000000,\n \"limit\": 20,\n \"p\": 1,\n \"services\": [\n \"my-web-app\"\n ],\n \"start_time\": 1712000000000,\n \"type\": \"browser\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.flashcat.cloud/sourcemap/list?app_key=")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"end_time\": 1712700000000,\n \"limit\": 20,\n \"p\": 1,\n \"services\": [\n \"my-web-app\"\n ],\n \"start_time\": 1712000000000,\n \"type\": \"browser\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"items": [
{
"created_at": 1712700000,
"git_commit_sha": "abc1234def5678",
"git_repository_url": "https://github.com/example/my-web-app",
"key": "browser/my-web-app/1.0.0/main.js.map",
"metadata": {},
"service": "my-web-app",
"size": 204800,
"type": "browser",
"updated_at": 1712700000,
"version": "1.0.0"
}
],
"total": 3
},
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4"
}{
"error": {
"code": "InvalidParameter",
"message": "The specified parameter is not valid."
},
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4"
}{
"error": {
"code": "Unauthorized",
"message": "You are unauthorized."
},
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4"
}{
"error": {
"code": "RequestTooFrequently",
"message": "Request too frequently."
},
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4"
}{
"error": {
"code": "InternalError",
"message": "We encountered an internal error, and it has been reported. Please try again later."
},
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4"
}List sourcemaps
Return a paginated list of uploaded sourcemap files filtered by platform type, service, and version.
curl --request POST \
--url 'https://api.flashcat.cloud/sourcemap/list?app_key=' \
--header 'Content-Type: application/json' \
--data '
{
"end_time": 1712700000000,
"limit": 20,
"p": 1,
"services": [
"my-web-app"
],
"start_time": 1712000000000,
"type": "browser"
}
'import requests
url = "https://api.flashcat.cloud/sourcemap/list?app_key="
payload = {
"end_time": 1712700000000,
"limit": 20,
"p": 1,
"services": ["my-web-app"],
"start_time": 1712000000000,
"type": "browser"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
end_time: 1712700000000,
limit: 20,
p: 1,
services: ['my-web-app'],
start_time: 1712000000000,
type: 'browser'
})
};
fetch('https://api.flashcat.cloud/sourcemap/list?app_key=', 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.flashcat.cloud/sourcemap/list?app_key=",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'end_time' => 1712700000000,
'limit' => 20,
'p' => 1,
'services' => [
'my-web-app'
],
'start_time' => 1712000000000,
'type' => 'browser'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.flashcat.cloud/sourcemap/list?app_key="
payload := strings.NewReader("{\n \"end_time\": 1712700000000,\n \"limit\": 20,\n \"p\": 1,\n \"services\": [\n \"my-web-app\"\n ],\n \"start_time\": 1712000000000,\n \"type\": \"browser\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.flashcat.cloud/sourcemap/list?app_key=")
.header("Content-Type", "application/json")
.body("{\n \"end_time\": 1712700000000,\n \"limit\": 20,\n \"p\": 1,\n \"services\": [\n \"my-web-app\"\n ],\n \"start_time\": 1712000000000,\n \"type\": \"browser\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.flashcat.cloud/sourcemap/list?app_key=")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"end_time\": 1712700000000,\n \"limit\": 20,\n \"p\": 1,\n \"services\": [\n \"my-web-app\"\n ],\n \"start_time\": 1712000000000,\n \"type\": \"browser\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"items": [
{
"created_at": 1712700000,
"git_commit_sha": "abc1234def5678",
"git_repository_url": "https://github.com/example/my-web-app",
"key": "browser/my-web-app/1.0.0/main.js.map",
"metadata": {},
"service": "my-web-app",
"size": 204800,
"type": "browser",
"updated_at": 1712700000,
"version": "1.0.0"
}
],
"total": 3
},
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4"
}{
"error": {
"code": "InvalidParameter",
"message": "The specified parameter is not valid."
},
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4"
}{
"error": {
"code": "Unauthorized",
"message": "You are unauthorized."
},
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4"
}{
"error": {
"code": "RequestTooFrequently",
"message": "Request too frequently."
},
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4"
}{
"error": {
"code": "InternalError",
"message": "We encountered an internal error, and it has been reported. Please try again later."
},
"request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4"
}Restrictions
| Aspect | Value |
|---|---|
| Rate limits | 1,000 requests/minute; 50 requests/second per account |
| Permissions | None — any valid app_key can call this operation |
Usage
start_timeandend_timeare required — both use Unix epoch milliseconds. Maximum window is 365 days.- The
typefield selects the platform:browser(JavaScript),android, orios. Defaults tobrowserwhen omitted. - Default page size is 20; maximum is 100. Default sort is
created_atdescending. - For Android,
build_idmatches the Gradle plugin build identifier. For iOS,uuidmatches the dSYM bundle UUID.
Authorizations
App key issued from the Flashduty console under Account → APP Keys. Required on every public API call. Keep it secret — it grants the same access as the owning account.
Body
Paginated filter for sourcemap listings.
End of upload time range, Unix epoch milliseconds. Maximum window: 365 days.
Start of upload time range, Unix epoch milliseconds. Must be > 0 and before end_time.
Sort ascending. Default false (descending).
Android only. Filter by Gradle plugin build identifier. Max 200 characters.
200Symbol type filter, Android and HarmonyOS only (ignored for other platforms): mapping (default) lists ProGuard/R8 mappings or ArkTS sourcemaps, native lists native .so symbols.
mapping, native Page size. Maximum 100. Default 20.
x <= 10020
Sort field; defaults to created_at descending when omitted.
created_at, updated_at Page number, starting at 1.
x >= 11
Free-text substring match. Matches minified_url for the JS stores (browser/react-native/harmony/miniprogram), build_id for android/flutter/electron and harmony with kind=native, or uuid for ios (case-insensitive, hyphens ignored).
200Filter by service names. Up to 100 values.
100Platform whose symbol store to list. Defaults to browser when omitted; any other value returns an empty list.
| Value | Store listed |
|---|---|
browser | JavaScript sourcemaps (shared store; excludes HarmonyOS ArkTS and React Native rows) |
android | ProGuard/R8 mapping files; with kind=native, Android NDK .so symbols |
ios | iOS dSYM symbol files |
miniprogram | WeChat mini program sourcemaps |
react-native | React Native JS sourcemaps |
harmony | HarmonyOS ArkTS sourcemaps; with kind=native, HarmonyOS .so symbols |
flutter | Flutter Dart AOT symbols |
electron | Electron Breakpad symbols |
browser, android, ios, miniprogram, react-native, harmony, flutter, electron iOS only. Filter by dSYM bundle UUID. Max 200 characters.
200Filter by version strings. Up to 100 values.
100Response
Success
Success response envelope. On every 2xx response, request_id identifies the call (also mirrored in the Flashcat-Request-Id header) and data holds the endpoint-specific payload. Failure responses use a different shape — see ErrorResponse.
Was this page helpful?