Hi-Send Docs

Get Record

https://core.hisend.hunnovate.com/api/v1/records/{record_identifier}?api_key={api_key}

Get one record


Path Parameters

project_identifier string required

The identifier or id of the project, for example project_name or 01jtk9f6xtp5bqycmj8x68040f, you can get it from the projects page on your dashboard

table_identifier string required

The identifier or id of the table, for example users or 01jtk9f6zf2p1n4d65bxyh6ysk, you can get it from the tables page on your dashboard

Query Params

search string optional

Search term to match against the record data (partial match).

page string optional default to 1

Page number for pagination.

per_page string optional default to 100

Number of records per page (max 4000).

sort_by string optional default to id

Column to sort by. One of: id, project_id, table_id, created_at, updated_at.

sort_direction string optional default to asc

Sort direction. One of: asc, desc.

date string optional default to 2025-07-01

Filter records by specific creation date (YYYY-MM-DD).

from_date string optional default to 2025-07-01

Start date for date range filtering (YYYY-MM-DD).

to_date string optional default to 2025-07-03

End date for date range filtering (must be after or equal to from_date).

filter_column string optional default to status

JSON column name inside data to filter.

filter_value string optional default to active

Value to compare against the filter_column.

filter_operator string optional default to equals

Operator for filter comparison. One of: equals, not_equals, contains, not_contains, greater_than, less_than.

user_id string optional default to abc123

Restrict to records of a particular user ID(This will be typically needed by admin users).

api_key string required

The api key from your dashboard

200 Success Response Example


{
    "data": {
        "id": "01JTNFQZ2PN22HKKJ4FVEFHFP9",
        "content": "Ea et saepe sunt eu",
        "subject": "Et et ut elit possi",
        "project_id": "01jtk9f6xtp5bqycmj8x68040f",
        "table_id": "01jtnfq22as5dra41adekjea92",
        "created_at": "2025-05-07T13:42:43.000000Z",
        "updated_at": "2025-05-07T13:42:43.000000Z",
    },
    "message": "Record retrieved successfully",
}