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

# List stored addresses

> List the list of stored addresses available to the account.



## OpenAPI

````yaml /openapi.json get /storedAddresses
openapi: 3.0.1
info:
  title: Connector
  version: 80f7edc, 2026-01-23T12:01:00Z
  description: Enhanced Quivo API documentation with additional descriptions and examples
  contact:
    name: Quivo Support
    email: support@quivo.co
    url: https://quivo.co
  license:
    name: Proprietary
    url: https://quivo.co/terms
  termsOfService: https://quivo.co/terms
servers:
  - url: https://api.quivo.co/
    description: Production API server for Quivo Connector
security: []
tags:
  - name: addresses
    description: Manage stored addresses in the seller's address book
  - name: apiKeyRequests
    description: Request and manage API keys
  - name: articles
    description: Create and manage product articles
  - name: audits
    description: Access audit logs and history
  - name: bundles
    description: Manage product bundles
  - name: carriers
    description: Get carrier information
  - name: contacts
    description: Manage contact information
  - name: countries
    description: Get country information
  - name: currencies
    description: Get currency information
  - name: customerInquiries
    description: Manage customer inquiries
  - name: dashboards
    description: Access dashboard data
  - name: files
    description: Manage file uploads and downloads
  - name: fulfillmentPlans
    description: Manage fulfillment plans
  - name: inbounds
    description: Manage inbound shipments
  - name: items
    description: Monitor and manage inventory items
  - name: languages
    description: Get language information
  - name: notifications
    description: Manage notifications
  - name: orders
    description: Create and manage fulfillment orders
  - name: ping
    description: Health check endpoint
  - name: returnApp
    description: Manage return applications
  - name: returnLinks
    description: Manage return links
  - name: returns
    description: Manage returns
  - name: sellers
    description: Get seller information
  - name: shipments
    description: Book and manage shipments
  - name: shippingServiceGroups
    description: Get shipping service groups
  - name: shopOrders
    description: Manage shop orders
  - name: shops
    description: Manage shops
  - name: status
    description: Get system status
  - name: storedAddresses
    description: Manage stored addresses
  - name: subscriptionPackages
    description: Manage subscription packages
  - name: subscriptions
    description: Manage webhook subscriptions
  - name: track
    description: Track shipments
  - name: transports
    description: Manage transport services
  - name: users
    description: Manage users
  - name: warehouses
    description: Get warehouse information
paths:
  /storedAddresses:
    get:
      tags:
        - storedAddresses
      summary: List stored addresses
      description: List the list of stored addresses available to the account.
      operationId: searchGetStoredAddresses
      parameters:
        - name: query
          in: query
          schema:
            type: string
          description: >-
            Search query string used to filter results. This field supports
            specific syntax for filtering across multiple fields.
        - name: sort
          in: query
          schema:
            type: string
          description: >-
            Optional sorting criteria for the results. Format is typically
            'field:direction' (e.g., 'created:desc').
        - name: page
          in: query
          schema:
            type: integer
            format: int64
          description: >-
            The page number to retrieve when using offset-based pagination.
            Ignored if 'searchAfter' is provided.
        - name: searchAfter
          in: query
          schema:
            type: string
          description: >-
            Used for cursor-based pagination. Pass the 'sort' key value from the
            last item of the previous page to retrieve the next set of results
            efficiently. Overrides 'page'.
        - name: pageSize
          in: query
          schema:
            type: integer
            format: int64
          description: >-
            The maximum number of items to return per page. Used for both offset
            and cursor-based pagination.
      responses:
        '200':
          description: Returns an array of stored addresses available to the account.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/StoredAddress'
        '400':
          description: >-
            Bad request - the request payload is invalid, missing required
            fields, or contains invalid data.
        '401':
          description: >-
            Unauthorized - authentication credentials are missing, invalid, or
            expired.
        '404':
          description: >-
            Not found - the requested resource does not exist or is not
            accessible.
        '500':
          description: Internal server error - an unexpected error occurred on the server.
components:
  schemas:
    StoredAddress:
      type: object
      properties:
        id:
          type: integer
          format: int64
          description: The unique identifier for the id
        version:
          type: integer
          format: int64
          description: The version numeric value
        created:
          type: string
          format: date-time
          description: Timestamp when the item was created
        lastModified:
          type: string
          format: date-time
          description: Timestamp when the item was last modified
        address:
          $ref: '#/components/schemas/Address'
        deletedAt:
          type: string
          format: date-time
          description: The deleted at timestamp
        sort:
          type: string
          description: The sort value
        typeId:
          type: string
          description: The unique identifier for the type
      description: >-
        Stored address information accessible to the account. Contains address
        details and access permissions.
    Address:
      type: object
      properties:
        name1:
          type: string
          description: The name of the item
        name2:
          type: string
          description: The name of the item
        company:
          type: string
          description: Company name
        address1:
          type: string
          description: Address information
        address2:
          type: string
          description: Address information
        address3:
          type: string
          description: Address information
        zip:
          type: string
          description: ZIP or postal code
        city:
          type: string
          description: City name
        state:
          type: string
          description: State or province
        country:
          type: string
          description: Country code or name
        phone:
          type: string
          description: Phone number
        email:
          type: string
          description: Email address
        identifierType:
          type: string
          enum:
            - GLN
            - AMAZON_FCID
            - SHOP_SPECIFIC
            - STORE_ID
          description: The type of address identifier used.
        identifier:
          type: string
          description: Unique identifier for the address.
        additionalAddressIdentifiers:
          type: array
          items:
            $ref: '#/components/schemas/AdditionalAddressIdentifier'
          description: The unique identifier for the additionaladdressentifiers
        empty:
          type: boolean
          description: Indicates whether the address fields are empty.
      description: Address information including street, city, country, and postal code
    AdditionalAddressIdentifier:
      type: object
      properties:
        type:
          type: string
          enum:
            - GLN
            - AMAZON_FCID
            - SHOP_SPECIFIC
            - STORE_ID
          description: >-
            The type of additional identifier (e.g., GLN, AMAZON_FCID,
            SHOP_SPECIFIC, STORE_ID).
        identifier:
          type: string
          description: The specific identifier value (e.g., a GLN code or store ID).
      description: >-
        Additional identifier for an address, such as GLN, Amazon FCID, or
        shop-specific store ID.

````