I was building an app for hubspot that needs to sometimes uderstand filed type.
Is it possible to determine via the API whether a field type is URL or just regular single-line text? I’m using the endpoint `/crm/v3/properties/company/test_url`, but both URL fields and regular text fields return the same response.
{
"updatedAt": "2025-11-14T12:25:36.408Z",
"createdAt": "2025-11-13T13:03:56.653Z",
"name": "test_url",
"label": "test-url",
"type": "string",
"fieldType": "text",
"description": "",
"groupName": "companyinformation",
"options": [],
"createdUserId": "46731724",
"updatedUserId": "46731724",
"displayOrder": -1,
"calculated": false,
"externalOptions": false,
"archived": false,
"hasUniqueValue": false,
"hidden": false,
"modificationMetadata": {
"archivable": true,
"readOnlyDefinition": false,
"readOnlyValue": false
},
"formField": false,
"dataSensitivity": "non_sensitive"
}
