Skip to main content
POST
/
sourcemap
/
list
List sourcemaps
curl --request POST \
  --url 'https://api.flashcat.cloud/sourcemap/list?app_key=' \
  --header 'Content-Type: application/json' \
  --data '
{
  "start_time": 1712000000000,
  "end_time": 1712700000000,
  "type": "browser",
  "services": [
    "my-web-app"
  ],
  "p": 1,
  "limit": 20
}
'
{
  "request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4",
  "data": {
    "total": 3,
    "items": [
      {
        "key": "browser/my-web-app/1.0.0/main.js.map",
        "type": "browser",
        "service": "my-web-app",
        "version": "1.0.0",
        "size": 204800,
        "git_repository_url": "https://github.com/example/my-web-app",
        "git_commit_sha": "abc1234def5678",
        "created_at": 1712700000,
        "updated_at": 1712700000,
        "metadata": {}
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.flashcat.cloud/llms.txt

Use this file to discover all available pages before exploring further.

Restrictions

AspectValue
Rate limits1,000 requests/minute; 50 requests/second per account
PermissionsNone — any valid app_key can call this operation

Usage

  • start_time and end_time are required — both use Unix epoch milliseconds. Maximum window is 365 days.
  • The type field selects the platform: browser (JavaScript), android, or ios. Defaults to browser when omitted.
  • Default page size is 20; maximum is 100. Default sort is created_at descending.
  • For Android, build_id matches the Gradle plugin build identifier. For iOS, uuid matches the dSYM bundle UUID.

Authorizations

app_key
string
query
required

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

application/json

Paginated filter for sourcemap listings.

start_time
integer<int64>
required

Start of upload time range, Unix epoch milliseconds. Must be > 0 and before end_time.

end_time
integer<int64>
required

End of upload time range, Unix epoch milliseconds. Maximum window: 365 days.

type
enum<string>

Platform type. Defaults to browser when omitted.

Available options:
browser,
android,
ios
services
string[]

Filter by service names. Up to 100 values.

versions
string[]

Filter by version strings. Up to 100 values.

query
string

Substring match on the minified URL (browser) or build ID (android). Max 200 characters.

build_id
string

Android only. Filter by Gradle plugin build identifier. Max 200 characters.

uuid
string

iOS only. Filter by dSYM bundle UUID. Max 200 characters.

p
integer
default:1

Page number, starting at 1.

Required range: x >= 1
Example:

1

limit
integer
default:20

Page size. Maximum 100. Default 20.

Required range: x <= 100
Example:

20

orderby
enum<string>

Sort field.

Available options:
created_at,
updated_at
asc
boolean
default:false

Sort ascending. Default false (descending).

Response

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.

request_id
string
required

Unique ID for this request. Mirrored in the Flashcat-Request-Id response header. Include it when reporting issues.

Example:

"01HK8XQE3Z7JM2NTFQ5YJ8P9R4"

data
object
required

Paginated list of sourcemap records.