List sourcemaps
Return a paginated list of uploaded sourcemap files filtered by platform type, service, and version.
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.
Start of upload time range, Unix epoch milliseconds. Must be > 0 and before end_time.
End of upload time range, Unix epoch milliseconds. Maximum window: 365 days.
Platform type. Defaults to browser when omitted.
browser, android, ios Filter by service names. Up to 100 values.
Filter by version strings. Up to 100 values.
Substring match on the minified URL (browser) or build ID (android). Max 200 characters.
Android only. Filter by Gradle plugin build identifier. Max 200 characters.
iOS only. Filter by dSYM bundle UUID. Max 200 characters.
Page number, starting at 1.
x >= 11
Page size. Maximum 100. Default 20.
x <= 10020
Sort field.
created_at, updated_at 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.