Managem
HomeLink
Multiple Menus
  • Link1
  • Link2
HomeLink
Multiple Menus
  • Link1
  • Link2
  1. Users
  • Users
  • APIs
    • Basket
      • List items in the basket
      • Add an item to the basket
      • Update an item in the basket
      • Remove an item from the basket
      • Retrieve the basket summary
      • Retrieve the basket information, fees & delivery costs
      • Create a checkout session for the basket
    • Conversations
      • List conversations
      • Create conversation
      • Count unread messages
      • List messages
      • Send a message
    • Search
      • Search using full-text and facets
      • Lookup usernames
      • Retrieve an item by its URN or slug
      • Retrieve multiple items by URN
      • Retrieve a faceted hierarchy of items
      • Retrieve search results for a specific game
      • Retrieve search results for a specific set
      • Retrieve search results for a specific type
    • Sellers
      • Create listing
      • Search listings
      • Get listing
      • Update listing
      • Delete listing
      • Create image upload URL
      • Get delivery configuration
      • Upsert delivery configuration
      • List orders
      • Get order
      • Create seller account
      • Get seller account
      • Get seller status
      • Get dashboard link
      • Get seller balance
      • Withdraw funds
      • List payouts
      • List transfers
    • Seller Listings
      • Search listings
      • Search a seller's listings
      • Search listings for a specific item
      • Retrieve historical prices for an item
    • Users
      • Find/Lookup addresses
        POST
      • Retrieve full address details
        POST
      • Store a new Address
        POST
      • List all Addresses
        GET
      • Delete an Address
        DELETE
      • Get user account information
        GET
      • Update user password
        PUT
      • Update user profile
        PUT
      • Update a users email address by first requesting a verification code
        PATCH
      • Update a user's email address by verifying the received code
        PUT
      • Create payment method
        POST
      • List payment methods
        GET
      • Delete payment method
        DELETE
      • List purchases
        GET
      • Get purchase
        GET
      • List reviews
        GET
      • Create review
        POST
      • Update review
        PUT
      • Delete review
        DELETE
    • Profiles
      • Get user profile
      • List reviews
  1. Users

Retrieve full address details

POST
/user/addresses/lookup/retrieve
Retrieve the full, detailed address data using Loqate's /Retrieve endpoint.
This endpoint should be used after selecting a result from the address "find" endpoint. Simply pass the selected item's id to this endpoint, and you'll receive a complete address object, including fields like street, city, postcode, and country.

Tip: Use this after narrowing down your search with POST /user/addresses/find.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.managem.co.uk/user/addresses/lookup/retrieve' \
--header 'Content-Type: application/json' \
--data-raw '{
    "id": "GB|RM|A|10321882|ENG"
}'
Response Response Example
{
    "id": "GB|RM|A|10321882|ENG",
    "department": "",
    "company": "",
    "subBuilding": "",
    "buildingNumber": "34",
    "buildingName": "",
    "secondaryStreet": "",
    "street": "Selborne Close",
    "block": "",
    "neighbourhood": "",
    "district": "",
    "city": "Petersfield",
    "line1": "34 Selborne Close",
    "line2": "",
    "line3": "",
    "line4": "",
    "line5": "",
    "adminArea": "Hampshire",
    "adminAreaCode": "",
    "state": "Hampshire",
    "stateCode": "",
    "postalCode": "GU32 2JB",
    "country": "United Kingdom",
    "countryIso2": "GB",
    "countryIso3": "GBR",
    "countryIsoNumber": "826",
    "sortingNumber1": "82163",
    "sortingNumber2": "",
    "barcode": "(GU322JB2GJ)",
    "poBoxNumber": "",
    "label": "34 Selborne Close\nPETERSFIELD\nGU32 2JB\nUNITED KINGDOM",
    "type": "Residential"
}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json

Examples

Responses

🟢200OK
application/json
Retrieve a specific address
Body

Previous
Find/Lookup addresses
Next
Store a new Address
Built with