Skip to main content
POST
List sourcemaps

Restrictions

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.