> ## Documentation Index
> Fetch the complete documentation index at: https://docs.contactsmanager.io/llms.txt
> Use this file to discover all available pages before exploring further.

# URL Address

> URL information for contacts in the ContactsManager SDK

# URL Address

The `ContactURLAddress` model represents a URL (web address) associated with a contact in the ContactsManager SDK.

## Properties

* `urlId: String` - Unique identifier for the URL entry
* `value: String?` - The actual URL
* `type: String?` - The type or label for the URL (e.g., homepage, work, blog)
* `emoji: String?` - An emoji icon associated with this URL
* `contact: Contact?` - Reference to the parent contact that owns this URL

## Usage Example

```swift theme={null}
// Create a URL address
let urlAddress = ContactURLAddress(
    contactId: "contact-123",
    value: "https://example.com/portfolio",
    type: "portfolio",
    emoji: "🌐"
)

// Add to a contact
contact.urlAddresses.append(urlAddress)

// Access from a contact
if let firstURL = contact.urlAddresses.first {
    print("URL: \(firstURL.value ?? "None") (\(firstURL.type ?? "Unknown"))")
}
```

## Related

* [Contact Model](/models/contact) - The parent contact model
* [Email Address Model](/models/email-address) - Email addresses for contacts
* [Social Profile Model](/models/social-profile) - Social media profiles for contacts
