List runs for a model
curl --request GET \
--url https://api.runflow.io/v1/models/{owner}/{slug}/runs \
--header 'Authorization: Bearer <token>'{
"items": [
"<unknown>"
],
"first": "<string>",
"next": "<string>",
"previous": "<string>"
}Models
List runs for a model
List runs scoped to the caller’s org for a specific model.
GET
/
v1
/
models
/
{owner}
/
{slug}
/
runs
List runs for a model
curl --request GET \
--url https://api.runflow.io/v1/models/{owner}/{slug}/runs \
--header 'Authorization: Bearer <token>'{
"items": [
"<unknown>"
],
"first": "<string>",
"next": "<string>",
"previous": "<string>"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Headers
Query Parameters
Required range:
1 <= x <= 100Response
Successful Response
Response envelope for cursor-paginated search results.
Contains the page of items plus first/next/previous pagination links. Concrete entity validators should subclass as::
class SearchValidator(SearchResponse["FullValidator"]):
passto produce a proper OpenAPI schema with typed items.
⌘I