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

Find/Lookup addresses

POST
/user/addresses/lookup/find
Search for address suggestions using Loqate's /Find endpoint. This endpoint returns a list of either addresses or "containers" — groupings like cities, streets, or postcodes.
You can refine the search by using the container field in your request to drill down into a specific result.
To retrieve the full details of a selected address, use the GET /user/addresses/find endpoint with the address ID.

Note: In development mode, we only get 50 requests per day!
Request Request Example
Shell
JavaScript
Java
Swift
cURL
curl --location --request POST 'https://api.managem.co.uk/user/addresses/lookup/find' \
--header 'Content-Type: application/json' \
--data-raw '{
    "text": "34 Selborne Cl"
}'
Response Response Example
Search by text
[
    {
        "id": "GB|RM|A|10321882|ENG",
        "description": "Petersfield GU32 2JB",
        "type": "Address",
        "text": "34 Selborne Close",
        "highlight": "0-2,3-11,12-14"
    }
]

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
Find a list of addresses, or containers to refine the user's search
Body

Previous
Retrieve historical prices for an item
Next
Retrieve full address details
Built with