> For the complete documentation index, see [llms.txt](https://apidoc.artion.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://apidoc.artion.io/graphql-schema/shipping-on-redeem.md).

# Shipping on Redeem

{% hint style="info" %}
Special type of tokens can be redeemed on Artion platform to get the underlying object.
{% endhint %}

```graphql
# ShippingAddress represents user shipping address for tokens redeem.
type ShippingAddress {
    # Address of the user wallet
    user: Address!

    # Full name (in address)
    fullname: String!

    # Phone (for delivery)
    phone: String!

    # 1th line of address - Street address or P.O. Box
    street: String!

    # 2th line of address - Apt, suite, unit, building, floor...
    apartment: String!

    # City
    city: String!

    # State (for multi-states countries only)
    state: String!

    # Country
    country: String!

    # ZIP / Postal code
    zip: String!

    # Last modification time
    updated: Time!
}

# InputShippingAddress represents user shipping address for tokens redeem.
input InputShippingAddress {
    # Full name (in address)
    fullname: String!

    # Phone (for delivery)
    phone: String!

    # 1th line of address - Street address or P.O. Box
    street: String!

    # 2th line of address - Apt, suite, unit, building, floor...
    apartment: String!

    # City
    city: String!

    # State (for multi-states countries only)
    state: String!

    # Country
    country: String!

    # ZIP / Postal code
    zip: String!
}
```
