Skip to main content

Get default store's record

GET 

/v2/actor-runs/:runId/key-value-store/records/:recordKey

Gets a value stored under a specific key in the default key-value store of the Actor run.

This endpoint is a shortcut for getting the run's defaultKeyValueStoreId and then using the Get record endpoint.

Request

Path Parameters

    runId string required

    Actor run ID.


    Example: 3KH8gEpp4d8uQSe8T
    recordKey string required

    Key of the record.


    Example: someKey

Query Parameters

    signature string

    Signature used for the access.


    Example: 2wTI46Bg8qWQrV7tavlPI
    attachment boolean

    If true or 1, the response will be served with Content-Disposition: attachment header, causing web browsers to offer downloading HTML records instead of displaying them.


    Example: true

Status 200

Response Headers
    {
    "message": "Hello, world!",
    "count": 42
    }