Resources

List resources

Returns the Resources in the environment selected by this API key. Equivalent Resources in another environment may use the same integration key while keeping distinct Resource and revision IDs.

GET/merchant/v1/resources

Request

Query Parameters

archived?

Return archived resources instead of active resources.

as_of?

Stable snapshot timestamp for this page sequence. Include a timezone; future timestamps are rejected.

order?

Show the newest or oldest records first.

page?

Page number to return. The first page is 1.

page_size?

Number of items to return on each page. Use 1 through 100.

Authentication

Authorization*Bearer <token>

Private API key for your Recuut account. A recuut_test_ key uses test payers and transactions. A recuut_live_ key uses live data. Send this key only from your server.

In: header

Response

application/json

Schema

items*ResourceSchema[]

Fields on each ResourceSchema

Resource in this Recuut account.

Request example

curl --request GET \  --url "$RECUUT_API_URL/merchant/v1/resources" \  --header "Authorization: Bearer $RECUUT_API_KEY"

HTTP response examples

200 · OKapplication/json
{  "as_of": "2026-08-12T09:30:00Z",  "count": 1,  "items": [    {      "created_at": "2026-08-01T08:00:00Z",      "description": "Generate a paid quarterly research report.",      "id": "res_00000000000070008000000000000000",      "image_url": "https://merchant.example/report.png",      "name": "Quarterly report",      "updated_at": "2026-08-12T09:30:00Z"    }  ],  "next": null}