# Get all attrributes
You can return a list of your custom attributes.
This is the way to find an ID for existing attribute. ID will be required for further requests, such as delete, update or getting information about single attribute.
GET
/attributes/
# Request
- CURL
- JavaScript
- PHP
- Python
curl -X GET -H
"Authorization: Token <your_64_char_api_key>"
"https://<your_app_subdomain>.user.com/api/public/attributes/"
# Response
{
"results": [
{
"value_type": "fixed choices",
"id": 2516,
"name": "Fixed Choices Attribute",
"name_std": "fixed_choices_attribute",
"content_type": "user"
},
{
"value_type": "date and time",
"id": 2515,
"name": "Date and Time Attribute",
"name_std": "date_and_time_attribute",
"content_type": "user"
},
{
"value_type": "string",
"id": 2514,
"name": "String Attribute",
"name_std": "string_attribute",
"content_type": "user"
},
{
"value_type": "date",
"id": 2513,
"name": "Date Attribute",
"name_std": "date_attribute",
"content_type": "user"
},
{
"value_type": "integer",
"id": 2512,
"name": "Integer Attribute",
"name_std": "integer_attribute",
"content_type": "user"
},
{
"value_type": "boolean",
"id": 2511,
"name": "Boolean Attribute",
"name_std": "boolean_attribute",
"content_type": "user"
}
],
"next": "null",
"previous": null,
"count": 6;
}