Attributes
On this page, we’ll dive into the unique attribute endpoints. We'll look at how to query the attributes available in the platform.
The attribute model
The attribute model contains all the information about the attributes sent to Unblind.
Properties
- Name
name- Type
- string
- Description
Unique key identifier for the attributes.
GET/v1/attributes
List all attributes
This endpoint allows you to retrieve a paginated list of all your attributes. By default, a maximum of a hundred attributes are shown per page.
Request
GET
/v1/attributescurl https://api.unblind.dev/v1/attributes \
-X GET \
-H "Authorization: Bearer <API_KEY>"
Response
[
{
"name": "service.name",
}, {
"name": "process.pid",
}, ...
]