Skip to main content
GET
List Resources
Returns a paginated list of resources for your company, newest first. Use this endpoint to sync your Flashquotes resource catalog with an external system, populate a picker in a custom booking tool, or check what equipment is assigned to a given location.

Pagination

Resources use cursor-based pagination — pass the id of the last resource in the previous page as starting_after:
The response includes a hasMore flag indicating whether further pages exist.

Filtering by location

Pass location_id to return only resources attached to that location. This filter combines with pagination — you can page through resources for a single location by repeating location_id alongside starting_after.

Expand

Resources have no expandable relations. Any expand[] value returns 400 with the offending path echoed as param.

Sort order

Results are always sorted by createdAt desc. Sort order is not configurable.

Authorizations

x-api-key
string
header
required

API key for authentication

Query Parameters

limit
integer
default:10

Page size. Default 10, maximum 100.

Required range: 1 <= x <= 100
starting_after
string

Cursor — the id of the last resource from the previous page.

location_id
string

Filter to resources at this location.

Response

Resources retrieved successfully

object
enum<string>
required
Available options:
list
url
string
required
Example:

"/api/resources"

hasMore
boolean
required

Whether more pages are available. If true, use the id of the last item in data as starting_after to fetch the next page.

data
object[]
required