Advance Auto Parts Stores API

Store locations and availability

Operations 1

GET /stores Advance Auto Parts List Nearby Stores #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/advance-auto-parts-stores-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

advance-auto-parts-stores-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Advance Auto Parts Catalog Cart Stores API
  description: The Advance Auto Parts Catalog API provides programmatic access to the full product catalog including parts, accessories, batteries, and fluids. Supports vehicle fitment lookups by year/make/model/engine, part number searches, availability checks, pricing, and store inventory queries for professional and DIY customers.
  version: '1'
  contact:
    name: Advance Auto Parts Support
    url: https://www.advanceautoparts.com/i/help/customer-service
  termsOfService: https://www.advanceautoparts.com/i/policies/terms-and-conditions
  license:
    name: Advance Auto Parts Terms of Service
    url: https://www.advanceautoparts.com/i/policies/terms-and-conditions
servers:
- url: https://api.advanceautoparts.com/v1
  description: Advance Auto Parts Catalog API Production
security:
- apiKey: []
tags:
- name: Stores
  description: Store locations and availability
paths:
  /stores:
    get:
      operationId: getStores
      summary: Advance Auto Parts List Nearby Stores
      description: Find Advance Auto Parts store locations near a ZIP code or geographic coordinates.
      tags:
      - Stores
      parameters:
      - name: zip
        in: query
        required: false
        description: ZIP code to search near.
        schema:
          type: string
      - name: lat
        in: query
        required: false
        description: Latitude coordinate.
        schema:
          type: number
          format: float
      - name: lon
        in: query
        required: false
        description: Longitude coordinate.
        schema:
          type: number
          format: float
      - name: radius
        in: query
        required: false
        description: Search radius in miles.
        schema:
          type: integer
          default: 25
      - name: limit
        in: query
        required: false
        description: Maximum number of stores to return.
        schema:
          type: integer
          default: 10
      responses:
        '200':
          description: List of nearby stores.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StoreList'
              examples:
                getStores200Example:
                  summary: Default getStores 200 response
                  x-microcks-default: true
                  value:
                    stores:
                    - id: store-001
                      name: Advance Auto Parts - Main St
                      address: 123 Main St, Springfield, IL 62701
                      phone: 217-555-0100
                      hours: Mon-Sat 7:30AM-9PM, Sun 9AM-8PM
                      distance: 1.2
        '401':
          description: Unauthorized.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                getStores401Example:
                  summary: Default getStores 401 response
                  x-microcks-default: true
                  value:
                    code: UNAUTHORIZED
                    message: Invalid API key
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    ErrorResponse:
      type: object
      description: API error response.
      properties:
        code:
          type: string
          description: Error code.
          example: NOT_FOUND
        message:
          type: string
          description: Error message.
          example: The requested resource was not found.
    StoreList:
      type: object
      description: List of nearby store locations.
      properties:
        stores:
          type: array
          description: Array of store locations.
          items:
            $ref: '#/components/schemas/Store'
    Store:
      type: object
      description: An Advance Auto Parts retail store.
      properties:
        id:
          type: string
          description: Store identifier.
          example: store-001
        name:
          type: string
          description: Store name.
          example: Advance Auto Parts - Main St
        address:
          type: string
          description: Street address.
          example: 123 Main St, Springfield, IL 62701
        phone:
          type: string
          description: Phone number.
          example: 217-555-0100
        hours:
          type: string
          description: Business hours.
          example: Mon-Sat 7:30AM-9PM, Sun 9AM-8PM
        distance:
          type: number
          format: float
          description: Distance from search location in miles.
          example: 1.2
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-API-Key