SEO Data ScraperSEO Data Scraper

Token Usage:5 per call

SEO Scraper is a simple tool for scraping SEO data. It returns the meta title, meta description, and more.

This API provides reliable and fast access to seo data scraper data through a simple REST interface. Built for developers who need consistent, high-quality results with minimal setup time.

To use this API, you need an API key. You can get one by creating a free account and visiting your dashboard.

View API in Directory

Endpoint

POST Request
POST https://api.apiverve.com/v1/seoscraper

Code Examples

Here are examples of how to call this API in different programming languages:

cURL Request
curl -X POST \
  "https://api.apiverve.com/v1/seoscraper" \
  -H "X-API-Key: your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{
  "url": "https://apiverve.com"
}'
JavaScript (Fetch API)
const response = await fetch('https://api.apiverve.com/v1/seoscraper', {
  method: 'POST',
  headers: {
    'X-API-Key': 'your_api_key_here',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    "url": "https://apiverve.com"
})
});

const data = await response.json();
console.log(data);
Python (Requests)
import requests

headers = {
    'X-API-Key': 'your_api_key_here',
    'Content-Type': 'application/json'
}

payload = {
    "url": "https://apiverve.com"
}

response = requests.post('https://api.apiverve.com/v1/seoscraper', headers=headers, json=payload)

data = response.json()
print(data)
Node.js (Native HTTPS)
const https = require('https');
const url = require('url');

const options = {
  method: 'POST',
  headers: {
    'X-API-Key': 'your_api_key_here',
    'Content-Type': 'application/json'
  }
};

const postData = JSON.stringify({
  "url": "https://apiverve.com"
});

const req = https.request('https://api.apiverve.com/v1/seoscraper', options, (res) => {
  let data = '';
  res.on('data', (chunk) => data += chunk);
  res.on('end', () => console.log(JSON.parse(data)));
});

req.write(postData);
req.end();
PHP (cURL)
<?php

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, 'https://api.apiverve.com/v1/seoscraper');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt($ch, CURLOPT_HTTPHEADER, [
    'X-API-Key: your_api_key_here',
    'Content-Type: application/json'
]);

curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode({
    'url': 'https://apiverve.com'
}));

$response = curl_exec($ch);
curl_close($ch);

$data = json_decode($response, true);
print_r($data);

?>
Go (net/http)
package main

import (
    "fmt"
    "io"
    "net/http"
    "bytes"
    "encoding/json"
)

func main() {
    payload := map[string]interface{}{
        "url": "https://apiverve.com"
    }

    jsonPayload, _ := json.Marshal(payload)
    req, _ := http.NewRequest("POST", "https://api.apiverve.com/v1/seoscraper", bytes.NewBuffer(jsonPayload))

    req.Header.Set("X-API-Key", "your_api_key_here")
    req.Header.Set("Content-Type", "application/json")

    client := &http.Client{}
    resp, err := client.Do(req)
    if err != nil {
        panic(err)
    }
    defer resp.Body.Close()

    body, _ := io.ReadAll(resp.Body)
    fmt.Println(string(body))
}
Ruby (Net::HTTP)
require 'net/http'
require 'json'

uri = URI('https://api.apiverve.com/v1/seoscraper')
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true

payload = {
  "url": "https://apiverve.com"
}

request = Net::HTTP::Post.new(uri)
request['X-API-Key'] = 'your_api_key_here'
request['Content-Type'] = 'application/json'

request.body = payload.to_json

response = http.request(request)
puts JSON.pretty_generate(JSON.parse(response.body))

Authentication

This API requires authentication via API key. Include your API key in the request header:

Required Header
X-API-Key: your_api_key_here

Parameters

The following parameters are available for this API endpoint:

ParameterTypeRequiredLocationDescriptionExample
urlstringYesbodyThe URL of the web page to scrape SEO data fromhttps://apiverve.com

Response

The API returns responses in JSON, XML, and YAML formats:

Example Responses

JSON Response
200 OK
{
  "status": "ok",
  "error": null,
  "data": {
    "requestUrl": "https://ebay.com",
    "url": "https://www.ebay.com/",
    "canonical": "https://www.ebay.com",
    "lang": "en",
    "charset": "utf-8",
    "title": "Electronics, Cars, Fashion, Collectibles & More | eBay",
    "image": "",
    "favicons": [
      {
        "rel": "icon",
        "href": "https://pages.ebay.com/favicon.ico"
      }
    ],
    "author": "",
    "description": "Buy & sell electronics, cars, clothes, collectibles & more on eBay, the world's online marketplace. Top brands, low prices & free shipping on many items.",
    "keywords": "",
    "source": "",
    "price": "",
    "priceCurrency": "",
    "availability": "",
    "robots": "",
    "jsonld": [
      {
        "@context": "https://schema.org",
        "@type": "WebPage",
        "@id": "https://www.ebay.com/#webpage",
        "url": "https://www.ebay.com",
        "author": {
          "@type": "Corporation",
          "@id": "https://www.ebay.com/#corporation",
          "url": "https://www.ebay.com",
          "logo": "https://ir.ebaystatic.com/rs/v/fxxj3ttftm5ltcqnto1o4baovyl.png",
          "description": "eBay Inc. is an American multinational e-commerce corporation based in San Jose, California, that facilitates consumer-to-consumer and business-to-consumer sales through its website. eBay was founded by Pierre Omidyar in the autumn of 1995, and became a notable success story of the dot-com bubble. eBay is a multibillion-dollar business with operations in about 30 countries, as of 2011. The company manages the eBay website, an online auction and shopping website in which people and businesses buy and sell a wide variety of goods and services worldwide. The website is free to use for buyers, but sellers are charged fees for listing items after a limited number of free listings, and again when those items are sold.",
          "founder": {
            "@type": "Person",
            "@id": "https://www.ebay.com/#founder",
            "name": "Pierre Omidyar"
          },
          "foundingDate": "1995-09-03",
          "foundingLocation": "San Jose, CA",
          "name": "eBay",
          "legalName": "eBay Inc.",
          "contactPoint": {
            "@type": "ContactPoint",
            "availableLanguage": [
              {
                "@type": "Language",
                "name": "English",
                "alternateName": "en"
              },
              {
                "@type": "Language",
                "name": "Spanish",
                "alternateName": "es"
              }
            ],
            "contactOption": "TollFree",
            "contactType": "Customer Service",
            "telephone": "+1-866-961-9253"
          }
        },
        "isPartOf": {
          "@type": "WebSite",
          "@id": "https://www.ebay.com/#website",
          "url": "https://www.ebay.com",
          "potentialAction": {
            "@type": "SearchAction",
            "target": "https://www.ebay.com/sch/i.html?_nkw={srch_str}&ssPageName=GSTL",
            "query-input": "required name=srch_str"
          }
        },
        "inLanguage": "EN",
        "sameAs": [
          "https://www.facebook.com/ebay/",
          "https://www.pinterest.com/ebay/",
          "https://twitter.com/eBay",
          "https://www.linkedin.com/company/ebay/",
          "https://www.youtube.com/ebay",
          "https://www.instagram.com/ebay/"
        ]
      }
    ],
    "og:url": "https://www.ebay.com",
    "og:locale": "",
    "og:locale:alternate": "",
    "og:title": "Electronics, Cars, Fashion, Collectibles & More | eBay",
    "og:type": "website",
    "og:description": "Buy & sell electronics, cars, clothes, collectibles & more on eBay, the world's online marketplace. Top brands, low prices & free shipping on many items.",
    "og:determiner": "",
    "og:site_name": "eBay",
    "og:image": "https://ir.ebaystatic.com/cr/v/c1/ebay-logo-1-1200x630-margin.png",
    "og:image:secure_url": "",
    "og:image:type": "",
    "og:image:width": "",
    "og:image:height": "",
    "twitter:title": "Electronics, Cars, Fashion, Collectibles & More | eBay",
    "twitter:description": "Buy & sell electronics, cars, clothes, collectibles & more on eBay, the world's online marketplace. Top brands, low prices & free shipping on many items.",
    "twitter:image": "https://ir.ebaystatic.com/cr/v/c1/ebay-logo-1-1200x1200-margin.png",
    "twitter:image:alt": "",
    "twitter:card": "summary",
    "twitter:site": "@eBay",
    "twitter:site:id": "",
    "twitter:url": "",
    "twitter:account_id": "",
    "twitter:creator": "",
    "twitter:creator:id": "",
    "twitter:player": "",
    "twitter:player:width": "",
    "twitter:player:height": "",
    "twitter:player:stream": "",
    "twitter:app:name:iphone": "",
    "twitter:app:id:iphone": "",
    "twitter:app:url:iphone": "",
    "twitter:app:name:ipad": "",
    "twitter:app:id:ipad": "",
    "twitter:app:url:ipad": "",
    "twitter:app:name:googleplay": "",
    "twitter:app:id:googleplay": "",
    "twitter:app:url:googleplay": "",
    "headings": [
      {
        "level": "h4",
        "text": "Parts & Accessories"
      },
      {
        "level": "h4",
        "text": "Vehicles"
      },
      {
        "level": "h4",
        "text": "Top Categories"
      },
      {
        "level": "h4",
        "text": "Additional Categories"
      },
      {
        "level": "h4",
        "text": "Top Categories"
      },
      {
        "level": "h4",
        "text": "Featured"
      },
      {
        "level": "h4",
        "text": "Top Categories"
      },
      {
        "level": "h4",
        "text": "Additional Categories"
      },
      {
        "level": "h4",
        "text": "Top Categories"
      },
      {
        "level": "h4",
        "text": "Additional Categories"
      },
      {
        "level": "h4",
        "text": "Top Categories"
      },
      {
        "level": "h4",
        "text": "Featured"
      },
      {
        "level": "h4",
        "text": "Top Categories"
      },
      {
        "level": "h4",
        "text": "Popular Topics"
      },
      {
        "level": "h4",
        "text": "Top Categories"
      },
      {
        "level": "h4",
        "text": "Additional Categories"
      },
      {
        "level": "h4",
        "text": "Top Categories"
      },
      {
        "level": "h4",
        "text": "Top Brands"
      },
      {
        "level": "h4",
        "text": "Shop eBay Refurbished Electronics"
      },
      {
        "level": "h4",
        "text": "Shop eBay Refurbished Home"
      },
      {
        "level": "h2",
        "text": "Games you love. Cards you covet."
      },
      {
        "level": "h2",
        "text": "Trending in Sneakers"
      },
      {
        "level": "h3",
        "text": "Nike Kobe 6 Protro Sail All-Star FQ3546-100 Ship Now"
      },
      {
        "level": "h3",
        "text": "Size 13 - Air Jordan 1 Retro OG High Black Toe Reimagined"
      },
      {
        "level": "h3",
        "text": "Nike Zoom Kobe 6 Protro 'All-Star 2.0' MENS FQ3546-100 IN HANDS SHIPS NOW"
      },
      {
        "level": "h3",
        "text": "Nike Kobe 6 Protro 'Sail' All Star  FQ3546-100 Size 8 - 13 BRAND NEW"
      },
      {
        "level": "h3",
        "text": "Size 11 - Air Jordan 1 Retro OG Low Black Toe"
      },
      {
        "level": "h3",
        "text": "Nike Zoom Kobe 6 Protro 'All-Star 2.0' PREORDER SHIPS 02/13"
      },
      {
        "level": "h3",
        "text": "NIKE KOBE 6 PROTRO SAIL ALL STAR (FQ3546-100)"
      },
      {
        "level": "h3",
        "text": "Air Jordan 1 Retro High OG Black Toe Reimagined DZ5485-106"
      },
      {
        "level": "h3",
        "text": "Size 9 Nike Zoom Kobe 6 Protro All Star 2.0 FQ3546-100 Brand New SHIPS FAST"
      },
      {
        "level": "h3",
        "text": "Nike Kobe 6 Protro Sail All-Star FQ3546-100 Ship Now  **IN HAND SHIP NOW**"
      },
      {
        "level": "h2",
        "text": "Trending in Watches"
      },
      {
        "level": "h3",
        "text": "Rolex Submariner Mens 40mm Date 16610 SS Vintage Running Automatic Wrist Watch"
      },
      {
        "level": "h3",
        "text": "Cartier Santos Carree Ref: 2961 18K Yellow Gold / S. Steel 29mm Automatic Watch"
      },
      {
        "level": "h3",
        "text": "Omega Speedmaster 145022 71 ST  Chronograph Vintage Pilots Watch 1039 516"
      },
      {
        "level": "h3",
        "text": "Cartier Tank Must XL Automatic Wristwatch WSTA0040 w/Spare Straps, Box & Papers"
      },
      {
        "level": "h3",
        "text": "Factory Service Breitling Superocean Heritage II Chronograph 18K SS Wrist Watch"
      },
      {
        "level": "h3",
        "text": "Rolex Oyster Perpetual Day-Date Ref. 1803 Champagne Dial 36mm #W150325-1"
      },
      {
        "level": "h3",
        "text": "Patek Philippe 3543 Gubelin Roman Dial Vintage 18k Gold Box and Papers 1969"
      },
      {
        "level": "h3",
        "text": "Rolex OP Datejust Thunderbird Men's 36mm 16263 Two-Tone Wristwatch #W145913-1"
      },
      {
        "level": "h3",
        "text": "Grand Seiko Hi-Beat 36000 80 Hours SLGH021 \"Genbi Valley\" Watch 2024 LE 1/1000"
      },
      {
        "level": "h3",
        "text": "ROLEX MENS EXPLORER II 16570 GMT DATE 40MM STAINLESS STEEL BLACK Box And papers"
      },
      {
        "level": "h2",
        "text": "Score these trending kicks"
      },
      {
        "level": "h3",
        "text": "Travis Scott x Jordan 1 Low Velvet Brown"
      },
      {
        "level": "h3",
        "text": "Nike Air Diamond Turf 49ers 2025"
      },
      {
        "level": "h3",
        "text": "Jordan 5 Retro OG Metallic Reimagined"
      },
      {
        "level": "h3",
        "text": "Jordan 3 Retro Black Cat 2025"
      },
      {
        "level": "h3",
        "text": "Jordan 1 High Black Toe Reimagined"
      },
      {
        "level": "h3",
        "text": "Nike Zoom Kobe 5 Protro Year of the Mamba"
      },
      {
        "level": "h3",
        "text": "Jordan 3 Retro Black Cement 2024"
      },
      {
        "level": "h2",
        "text": "Trending in Refurbished"
      },
      {
        "level": "h3",
        "text": "Soundcore Life Q20 Wireless Over-Ear Headphones ANC Bluetooth Headset|Refurbish"
      },
      {
        "level": "h3",
        "text": "Lenovo Thinkpad T14 G1 14\" FHD Intel Core i5 10310U 16GB RAM 512GB SSD W11P"
      },
      {
        "level": "h3",
        "text": "HP TP01-3016 Desktop Intel i5-12400 Intel UHD 730 12GB DDR4 RAM 256GB SSD W11H"
      },
      {
        "level": "h3",
        "text": "JBL Partybox 110 Portable Bluetooth Party Speaker w/ 160W Powerful Sound, Black"
      },
      {
        "level": "h3",
        "text": "Lenovo Yoga 7 2-In-1 14IML9 14\" Touch Ultra 5 125U 16GB 1TB Win11P FPR CAM 2Y"
      },
      {
        "level": "h3",
        "text": "JBL Tune 710BT, Wireless Over-Ear Headphones"
      },
      {
        "level": "h3",
        "text": "Soundcore Boom 2 Outdoor Speaker LED Portable Subwoofer BassUp 2.0 IPX7|Refurb"
      },
      {
        "level": "h3",
        "text": "Shark Upright Vacuum LA481HGN Rotator Lift-Away ADV Upright Hair Pro Brushroll"
      },
      {
        "level": "h3",
        "text": "HP ENVY TE01-4000 Desktop Intel Core i5-13400 1.8 GHz 8GB DDR4 256GB SSD W11H"
      },
      {
        "level": "h3",
        "text": "Reconditioned Olympus E-M10 Mark IV Mirrorless Camera w/ 14-42mm EZ Lens (Black)"
      },
      {
        "level": "h2",
        "text": "eBay Live"
      },
      {
        "level": "h2",
        "text": "Conquer cold weather"
      },
      {
        "level": "h3",
        "text": "Snow Blowers"
      },
      {
        "level": "h3",
        "text": "Cozy Bedding"
      },
      {
        "level": "h3",
        "text": "Generators"
      },
      {
        "level": "h3",
        "text": "Men’s Coats"
      },
      {
        "level": "h3",
        "text": "Women’s Coats"
      },
      {
        "level": "h3",
        "text": "Tires"
      },
      {
        "level": "h3",
        "text": "Thermostats"
      },
      {
        "level": "h2",
        "text": "Today's Deals"
      },
      {
        "level": "h3",
        "text": "Samsung Galaxy S21 5G SM-G991U1 128GB Unlocked Excellent"
      },
      {
        "level": "h3",
        "text": "Nintendo Switch Lite 32GB + Screen Protector 🛡️ + FREE 2-DAY Shipping ✈️"
      },
      {
        "level": "h3",
        "text": "EcoFlow Solar Generator RIVER 2 Pro 768Wh+110W Solar Panel Certified Refurbished"
      },
      {
        "level": "h3",
        "text": "Rachel Koen Diamond Love Chain Bracelet 18K White Gold 0.12cttw"
      },
      {
        "level": "h3",
        "text": "JBL Bar 1300X 1170W 11.1.4-Ch Soundbar w/ Detachable Surround Speakers"
      },
      {
        "level": "h3",
        "text": "Clore JNC770 Green 1700 Peak Amp Premium 12 Volt Jump Starter SOLJNC770G New!"
      },
      {
        "level": "h3",
        "text": "Shark ZU100 Rotator Vacuum Cleaner for Pet Hair, Navy (Certified Refurbished)"
      },
      {
        "level": "h3",
        "text": "Google Pixel 7 5G 128GB (Factory Unlocked) - Excellent"
      },
      {
        "level": "h2",
        "text": "Today's Deals"
      },
      {
        "level": "h3",
        "text": "Samsung Galaxy S21 5G SM-G991U1 128GB Unlocked Excellent"
      },
      {
        "level": "h3",
        "text": "Nintendo Switch Lite 32GB + Screen Protector 🛡️ + FREE 2-DAY Shipping ✈️"
      },
      {
        "level": "h3",
        "text": "EcoFlow Solar Generator RIVER 2 Pro 768Wh+110W Solar Panel Certified Refurbished"
      },
      {
        "level": "h3",
        "text": "Rachel Koen Diamond Love Chain Bracelet 18K White Gold 0.12cttw"
      },
      {
        "level": "h3",
        "text": "JBL Bar 1300X 1170W 11.1.4-Ch Soundbar w/ Detachable Surround Speakers"
      },
      {
        "level": "h3",
        "text": "Clore JNC770 Green 1700 Peak Amp Premium 12 Volt Jump Starter SOLJNC770G New!"
      },
      {
        "level": "h3",
        "text": "Shark ZU100 Rotator Vacuum Cleaner for Pet Hair, Navy (Certified Refurbished)"
      },
      {
        "level": "h3",
        "text": "Google Pixel 7 5G 128GB (Factory Unlocked) - Excellent"
      }
    ],
    "imgTags": [
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": ""
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": ""
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Sealed boxes"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Singles"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Sealed packs"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Sealed boxes"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Singles"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Sealed packs"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Motors"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Electronics"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Refurbished finds"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Motors"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Electronics"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Refurbished finds"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Nike Kobe 6 Protro Sail All-Star FQ3546-100 Ship Now"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Size 13 - Air Jordan 1 Retro OG High Black Toe Reimagined"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Nike Zoom Kobe 6 Protro 'All-Star 2.0' MENS FQ3546-100 IN HANDS SHIPS NOW"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Nike Kobe 6 Protro 'Sail' All Star  FQ3546-100 Size 8 - 13 BRAND NEW"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Size 11 - Air Jordan 1 Retro OG Low Black Toe"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Nike Zoom Kobe 6 Protro 'All-Star 2.0' PREORDER SHIPS 02/13"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "NIKE KOBE 6 PROTRO SAIL ALL STAR (FQ3546-100)"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Air Jordan 1 Retro High OG Black Toe Reimagined DZ5485-106"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Size 9 Nike Zoom Kobe 6 Protro All Star 2.0 FQ3546-100 Brand New SHIPS FAST"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Nike Kobe 6 Protro Sail All-Star FQ3546-100 Ship Now  **IN HAND SHIP NOW**"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Rolex Submariner Mens 40mm Date 16610 SS Vintage Running Automatic Wrist Watch"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Cartier Santos Carree Ref: 2961 18K Yellow Gold / S. Steel 29mm Automatic Watch"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Omega Speedmaster 145022 71 ST  Chronograph Vintage Pilots Watch 1039 516"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Cartier Tank Must XL Automatic Wristwatch WSTA0040 w/Spare Straps, Box & Papers"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Factory Service Breitling Superocean Heritage II Chronograph 18K SS Wrist Watch"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Rolex Oyster Perpetual Day-Date Ref. 1803 Champagne Dial 36mm #W150325-1"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Patek Philippe 3543 Gubelin Roman Dial Vintage 18k Gold Box and Papers 1969"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Rolex OP Datejust Thunderbird Men's 36mm 16263 Two-Tone Wristwatch #W145913-1"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Grand Seiko Hi-Beat 36000 80 Hours SLGH021 \"Genbi Valley\" Watch 2024 LE 1/1000"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "ROLEX MENS EXPLORER II 16570 GMT DATE 40MM STAINLESS STEEL BLACK Box And papers"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": ""
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": ""
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": ""
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": ""
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": ""
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": ""
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": ""
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Soundcore Life Q20 Wireless Over-Ear Headphones ANC Bluetooth Headset|Refurbish"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Lenovo Thinkpad T14 G1 14\" FHD Intel Core i5 10310U 16GB RAM 512GB SSD W11P"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "HP TP01-3016 Desktop Intel i5-12400 Intel UHD 730 12GB DDR4 RAM 256GB SSD W11H"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "JBL Partybox 110 Portable Bluetooth Party Speaker w/ 160W Powerful Sound, Black"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Lenovo Yoga 7 2-In-1 14IML9 14\" Touch Ultra 5 125U 16GB 1TB Win11P FPR CAM 2Y"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "JBL Tune 710BT, Wireless Over-Ear Headphones"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Soundcore Boom 2 Outdoor Speaker LED Portable Subwoofer BassUp 2.0 IPX7|Refurb"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Shark Upright Vacuum LA481HGN Rotator Lift-Away ADV Upright Hair Pro Brushroll"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "HP ENVY TE01-4000 Desktop Intel Core i5-13400 1.8 GHz 8GB DDR4 256GB SSD W11H"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Reconditioned Olympus E-M10 Mark IV Mirrorless Camera w/ 14-42mm EZ Lens (Black)"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": ""
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": ""
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": ""
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": ""
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": ""
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": ""
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": ""
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": ""
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": ""
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Samsung Galaxy S21 5G SM-G991U1 128GB Unlocked Excellent"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Nintendo Switch Lite 32GB + Screen Protector 🛡️ + FREE 2-DAY Shipping ✈️"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "EcoFlow Solar Generator RIVER 2 Pro 768Wh+110W Solar Panel Certified Refurbished"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Rachel Koen Diamond Love Chain Bracelet 18K White Gold 0.12cttw"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "JBL Bar 1300X 1170W 11.1.4-Ch Soundbar w/ Detachable Surround Speakers"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Clore JNC770 Green 1700 Peak Amp Premium 12 Volt Jump Starter SOLJNC770G New!"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Shark ZU100 Rotator Vacuum Cleaner for Pet Hair, Navy (Certified Refurbished)"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Google Pixel 7 5G 128GB (Factory Unlocked) - Excellent"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Samsung Galaxy S21 5G SM-G991U1 128GB Unlocked Excellent"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Nintendo Switch Lite 32GB + Screen Protector 🛡️ + FREE 2-DAY Shipping ✈️"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "EcoFlow Solar Generator RIVER 2 Pro 768Wh+110W Solar Panel Certified Refurbished"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Rachel Koen Diamond Love Chain Bracelet 18K White Gold 0.12cttw"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "JBL Bar 1300X 1170W 11.1.4-Ch Soundbar w/ Detachable Surround Speakers"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Clore JNC770 Green 1700 Peak Amp Premium 12 Volt Jump Starter SOLJNC770G New!"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Shark ZU100 Rotator Vacuum Cleaner for Pet Hair, Navy (Certified Refurbished)"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": "Google Pixel 7 5G 128GB (Factory Unlocked) - Excellent"
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": ""
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": ""
      },
      {
        "src": "https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif",
        "alt": ""
      }
    ],
    "responseBody": "",
    "viewport": "width=device-width, initial-scale=1, user-scalable=yes, minimum-scale=1",
    "X-UA-Compatible": "IE=edge",
    "360-site-verification": "5f0e3731bf6d3fc8b2f58b1a585a788f",
    "fb:app_id": "102628213125203",
    "msvalidate.01": "34E98E6F27109BE1A9DCF19658EEEE33",
    "referrer": "unsafe-url",
    "y_key": "acf32e2a69cbc2b0",
    "google-site-verification": "8kHr3jd3Z43q1ovwo0KVgo_NZKIEMjthBxti8m8fYTg",
    "google-adsense-account": "sites-7757056108965234",
    "yandex-verification": "6e11485a66d91eff"
  }
}
XML Response
200 OK
<Root>
  <status>ok</status>
  <error />
  <data>
    <requestUrl>https://ebay.com</requestUrl>
    <url>https://www.ebay.com/</url>
    <canonical>https://www.ebay.com</canonical>
    <lang>en</lang>
    <charset>utf-8</charset>
    <title>Electronics, Cars, Fashion, Collectibles &amp; More | eBay</title>
    <image></image>
    <favicons>
      <rel>icon</rel>
      <href>https://pages.ebay.com/favicon.ico</href>
    </favicons>
    <author></author>
    <description>Buy &amp; sell electronics, cars, clothes, collectibles &amp; more on eBay, the world's online marketplace. Top brands, low prices &amp; free shipping on many items.</description>
    <keywords></keywords>
    <source></source>
    <price></price>
    <priceCurrency></priceCurrency>
    <availability></availability>
    <robots></robots>
    <jsonld>
      <_x0040_context>https://schema.org</_x0040_context>
      <_x0040_type>WebPage</_x0040_type>
      <_x0040_id>https://www.ebay.com/#webpage</_x0040_id>
      <url>https://www.ebay.com</url>
      <author>
        <_x0040_type>Corporation</_x0040_type>
        <_x0040_id>https://www.ebay.com/#corporation</_x0040_id>
        <url>https://www.ebay.com</url>
        <logo>https://ir.ebaystatic.com/rs/v/fxxj3ttftm5ltcqnto1o4baovyl.png</logo>
        <description>eBay Inc. is an American multinational e-commerce corporation based in San Jose, California, that facilitates consumer-to-consumer and business-to-consumer sales through its website. eBay was founded by Pierre Omidyar in the autumn of 1995, and became a notable success story of the dot-com bubble. eBay is a multibillion-dollar business with operations in about 30 countries, as of 2011. The company manages the eBay website, an online auction and shopping website in which people and businesses buy and sell a wide variety of goods and services worldwide. The website is free to use for buyers, but sellers are charged fees for listing items after a limited number of free listings, and again when those items are sold.</description>
        <founder>
          <_x0040_type>Person</_x0040_type>
          <_x0040_id>https://www.ebay.com/#founder</_x0040_id>
          <name>Pierre Omidyar</name>
        </founder>
        <foundingDate>1995-09-03</foundingDate>
        <foundingLocation>San Jose, CA</foundingLocation>
        <name>eBay</name>
        <legalName>eBay Inc.</legalName>
        <contactPoint>
          <_x0040_type>ContactPoint</_x0040_type>
          <availableLanguage>
            <_x0040_type>Language</_x0040_type>
            <name>English</name>
            <alternateName>en</alternateName>
          </availableLanguage>
          <availableLanguage>
            <_x0040_type>Language</_x0040_type>
            <name>Spanish</name>
            <alternateName>es</alternateName>
          </availableLanguage>
          <contactOption>TollFree</contactOption>
          <contactType>Customer Service</contactType>
          <telephone>+1-866-961-9253</telephone>
        </contactPoint>
      </author>
      <isPartOf>
        <_x0040_type>WebSite</_x0040_type>
        <_x0040_id>https://www.ebay.com/#website</_x0040_id>
        <url>https://www.ebay.com</url>
        <potentialAction>
          <_x0040_type>SearchAction</_x0040_type>
          <target>https://www.ebay.com/sch/i.html?_nkw={srch_str}&amp;ssPageName=GSTL</target>
          <query-input>required name=srch_str</query-input>
        </potentialAction>
      </isPartOf>
      <inLanguage>EN</inLanguage>
      <sameAs>https://www.facebook.com/ebay/</sameAs>
      <sameAs>https://www.pinterest.com/ebay/</sameAs>
      <sameAs>https://twitter.com/eBay</sameAs>
      <sameAs>https://www.linkedin.com/company/ebay/</sameAs>
      <sameAs>https://www.youtube.com/ebay</sameAs>
      <sameAs>https://www.instagram.com/ebay/</sameAs>
    </jsonld>
    <og_x003A_url>https://www.ebay.com</og_x003A_url>
    <og_x003A_locale></og_x003A_locale>
    <og_x003A_locale_x003A_alternate></og_x003A_locale_x003A_alternate>
    <og_x003A_title>Electronics, Cars, Fashion, Collectibles &amp; More | eBay</og_x003A_title>
    <og_x003A_type>website</og_x003A_type>
    <og_x003A_description>Buy &amp; sell electronics, cars, clothes, collectibles &amp; more on eBay, the world's online marketplace. Top brands, low prices &amp; free shipping on many items.</og_x003A_description>
    <og_x003A_determiner></og_x003A_determiner>
    <og_x003A_site_name>eBay</og_x003A_site_name>
    <og_x003A_image>https://ir.ebaystatic.com/cr/v/c1/ebay-logo-1-1200x630-margin.png</og_x003A_image>
    <og_x003A_image_x003A_secure_url></og_x003A_image_x003A_secure_url>
    <og_x003A_image_x003A_type></og_x003A_image_x003A_type>
    <og_x003A_image_x003A_width></og_x003A_image_x003A_width>
    <og_x003A_image_x003A_height></og_x003A_image_x003A_height>
    <twitter_x003A_title>Electronics, Cars, Fashion, Collectibles &amp; More | eBay</twitter_x003A_title>
    <twitter_x003A_description>Buy &amp; sell electronics, cars, clothes, collectibles &amp; more on eBay, the world's online marketplace. Top brands, low prices &amp; free shipping on many items.</twitter_x003A_description>
    <twitter_x003A_image>https://ir.ebaystatic.com/cr/v/c1/ebay-logo-1-1200x1200-margin.png</twitter_x003A_image>
    <twitter_x003A_image_x003A_alt></twitter_x003A_image_x003A_alt>
    <twitter_x003A_card>summary</twitter_x003A_card>
    <twitter_x003A_site>@eBay</twitter_x003A_site>
    <twitter_x003A_site_x003A_id></twitter_x003A_site_x003A_id>
    <twitter_x003A_url></twitter_x003A_url>
    <twitter_x003A_account_id></twitter_x003A_account_id>
    <twitter_x003A_creator></twitter_x003A_creator>
    <twitter_x003A_creator_x003A_id></twitter_x003A_creator_x003A_id>
    <twitter_x003A_player></twitter_x003A_player>
    <twitter_x003A_player_x003A_width></twitter_x003A_player_x003A_width>
    <twitter_x003A_player_x003A_height></twitter_x003A_player_x003A_height>
    <twitter_x003A_player_x003A_stream></twitter_x003A_player_x003A_stream>
    <twitter_x003A_app_x003A_name_x003A_iphone></twitter_x003A_app_x003A_name_x003A_iphone>
    <twitter_x003A_app_x003A_id_x003A_iphone></twitter_x003A_app_x003A_id_x003A_iphone>
    <twitter_x003A_app_x003A_url_x003A_iphone></twitter_x003A_app_x003A_url_x003A_iphone>
    <twitter_x003A_app_x003A_name_x003A_ipad></twitter_x003A_app_x003A_name_x003A_ipad>
    <twitter_x003A_app_x003A_id_x003A_ipad></twitter_x003A_app_x003A_id_x003A_ipad>
    <twitter_x003A_app_x003A_url_x003A_ipad></twitter_x003A_app_x003A_url_x003A_ipad>
    <twitter_x003A_app_x003A_name_x003A_googleplay></twitter_x003A_app_x003A_name_x003A_googleplay>
    <twitter_x003A_app_x003A_id_x003A_googleplay></twitter_x003A_app_x003A_id_x003A_googleplay>
    <twitter_x003A_app_x003A_url_x003A_googleplay></twitter_x003A_app_x003A_url_x003A_googleplay>
    <headings>
      <level>h4</level>
      <text>Parts &amp; Accessories</text>
    </headings>
    <headings>
      <level>h4</level>
      <text>Vehicles</text>
    </headings>
    <headings>
      <level>h4</level>
      <text>Top Categories</text>
    </headings>
    <headings>
      <level>h4</level>
      <text>Additional Categories</text>
    </headings>
    <headings>
      <level>h4</level>
      <text>Top Categories</text>
    </headings>
    <headings>
      <level>h4</level>
      <text>Featured</text>
    </headings>
    <headings>
      <level>h4</level>
      <text>Top Categories</text>
    </headings>
    <headings>
      <level>h4</level>
      <text>Additional Categories</text>
    </headings>
    <headings>
      <level>h4</level>
      <text>Top Categories</text>
    </headings>
    <headings>
      <level>h4</level>
      <text>Additional Categories</text>
    </headings>
    <headings>
      <level>h4</level>
      <text>Top Categories</text>
    </headings>
    <headings>
      <level>h4</level>
      <text>Featured</text>
    </headings>
    <headings>
      <level>h4</level>
      <text>Top Categories</text>
    </headings>
    <headings>
      <level>h4</level>
      <text>Popular Topics</text>
    </headings>
    <headings>
      <level>h4</level>
      <text>Top Categories</text>
    </headings>
    <headings>
      <level>h4</level>
      <text>Additional Categories</text>
    </headings>
    <headings>
      <level>h4</level>
      <text>Top Categories</text>
    </headings>
    <headings>
      <level>h4</level>
      <text>Top Brands</text>
    </headings>
    <headings>
      <level>h4</level>
      <text>Shop eBay Refurbished Electronics</text>
    </headings>
    <headings>
      <level>h4</level>
      <text>Shop eBay Refurbished Home</text>
    </headings>
    <headings>
      <level>h2</level>
      <text>Games you love. Cards you covet.</text>
    </headings>
    <headings>
      <level>h2</level>
      <text>Trending in Sneakers</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Nike Kobe 6 Protro Sail All-Star FQ3546-100 Ship Now</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Size 13 - Air Jordan 1 Retro OG High Black Toe Reimagined</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Nike Zoom Kobe 6 Protro 'All-Star 2.0' MENS FQ3546-100 IN HANDS SHIPS NOW</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Nike Kobe 6 Protro 'Sail' All Star  FQ3546-100 Size 8 - 13 BRAND NEW</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Size 11 - Air Jordan 1 Retro OG Low Black Toe</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Nike Zoom Kobe 6 Protro 'All-Star 2.0' PREORDER SHIPS 02/13</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>NIKE KOBE 6 PROTRO SAIL ALL STAR (FQ3546-100)</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Air Jordan 1 Retro High OG Black Toe Reimagined DZ5485-106</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Size 9 Nike Zoom Kobe 6 Protro All Star 2.0 FQ3546-100 Brand New SHIPS FAST</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Nike Kobe 6 Protro Sail All-Star FQ3546-100 Ship Now  **IN HAND SHIP NOW**</text>
    </headings>
    <headings>
      <level>h2</level>
      <text>Trending in Watches</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Rolex Submariner Mens 40mm Date 16610 SS Vintage Running Automatic Wrist Watch</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Cartier Santos Carree Ref: 2961 18K Yellow Gold / S. Steel 29mm Automatic Watch</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Omega Speedmaster 145022 71 ST  Chronograph Vintage Pilots Watch 1039 516</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Cartier Tank Must XL Automatic Wristwatch WSTA0040 w/Spare Straps, Box &amp; Papers</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Factory Service Breitling Superocean Heritage II Chronograph 18K SS Wrist Watch</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Rolex Oyster Perpetual Day-Date Ref. 1803 Champagne Dial 36mm #W150325-1</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Patek Philippe 3543 Gubelin Roman Dial Vintage 18k Gold Box and Papers 1969</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Rolex OP Datejust Thunderbird Men's 36mm 16263 Two-Tone Wristwatch #W145913-1</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Grand Seiko Hi-Beat 36000 80 Hours SLGH021 "Genbi Valley" Watch 2024 LE 1/1000</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>ROLEX MENS EXPLORER II 16570 GMT DATE 40MM STAINLESS STEEL BLACK Box And papers</text>
    </headings>
    <headings>
      <level>h2</level>
      <text>Score these trending kicks</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Travis Scott x Jordan 1 Low Velvet Brown</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Nike Air Diamond Turf 49ers 2025</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Jordan 5 Retro OG Metallic Reimagined</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Jordan 3 Retro Black Cat 2025</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Jordan 1 High Black Toe Reimagined</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Nike Zoom Kobe 5 Protro Year of the Mamba</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Jordan 3 Retro Black Cement 2024</text>
    </headings>
    <headings>
      <level>h2</level>
      <text>Trending in Refurbished</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Soundcore Life Q20 Wireless Over-Ear Headphones ANC Bluetooth Headset|Refurbish</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Lenovo Thinkpad T14 G1 14" FHD Intel Core i5 10310U 16GB RAM 512GB SSD W11P</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>HP TP01-3016 Desktop Intel i5-12400 Intel UHD 730 12GB DDR4 RAM 256GB SSD W11H</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>JBL Partybox 110 Portable Bluetooth Party Speaker w/ 160W Powerful Sound, Black</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Lenovo Yoga 7 2-In-1 14IML9 14" Touch Ultra 5 125U 16GB 1TB Win11P FPR CAM 2Y</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>JBL Tune 710BT, Wireless Over-Ear Headphones</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Soundcore Boom 2 Outdoor Speaker LED Portable Subwoofer BassUp 2.0 IPX7|Refurb</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Shark Upright Vacuum LA481HGN Rotator Lift-Away ADV Upright Hair Pro Brushroll</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>HP ENVY TE01-4000 Desktop Intel Core i5-13400 1.8 GHz 8GB DDR4 256GB SSD W11H</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Reconditioned Olympus E-M10 Mark IV Mirrorless Camera w/ 14-42mm EZ Lens (Black)</text>
    </headings>
    <headings>
      <level>h2</level>
      <text>eBay Live</text>
    </headings>
    <headings>
      <level>h2</level>
      <text>Conquer cold weather</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Snow Blowers</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Cozy Bedding</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Generators</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Men’s Coats</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Women’s Coats</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Tires</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Thermostats</text>
    </headings>
    <headings>
      <level>h2</level>
      <text>Today's Deals</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Samsung Galaxy S21 5G SM-G991U1 128GB Unlocked Excellent</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Nintendo Switch Lite 32GB + Screen Protector 🛡️ + FREE 2-DAY Shipping ✈️</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>EcoFlow Solar Generator RIVER 2 Pro 768Wh+110W Solar Panel Certified Refurbished</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Rachel Koen Diamond Love Chain Bracelet 18K White Gold 0.12cttw</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>JBL Bar 1300X 1170W 11.1.4-Ch Soundbar w/ Detachable Surround Speakers</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Clore JNC770 Green 1700 Peak Amp Premium 12 Volt Jump Starter SOLJNC770G New!</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Shark ZU100 Rotator Vacuum Cleaner for Pet Hair, Navy (Certified Refurbished)</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Google Pixel 7 5G 128GB (Factory Unlocked) - Excellent</text>
    </headings>
    <headings>
      <level>h2</level>
      <text>Today's Deals</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Samsung Galaxy S21 5G SM-G991U1 128GB Unlocked Excellent</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Nintendo Switch Lite 32GB + Screen Protector 🛡️ + FREE 2-DAY Shipping ✈️</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>EcoFlow Solar Generator RIVER 2 Pro 768Wh+110W Solar Panel Certified Refurbished</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Rachel Koen Diamond Love Chain Bracelet 18K White Gold 0.12cttw</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>JBL Bar 1300X 1170W 11.1.4-Ch Soundbar w/ Detachable Surround Speakers</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Clore JNC770 Green 1700 Peak Amp Premium 12 Volt Jump Starter SOLJNC770G New!</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Shark ZU100 Rotator Vacuum Cleaner for Pet Hair, Navy (Certified Refurbished)</text>
    </headings>
    <headings>
      <level>h3</level>
      <text>Google Pixel 7 5G 128GB (Factory Unlocked) - Excellent</text>
    </headings>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt></alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt></alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Sealed boxes</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Singles</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Sealed packs</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Sealed boxes</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Singles</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Sealed packs</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Motors</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Electronics</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Refurbished finds</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Motors</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Electronics</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Refurbished finds</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Nike Kobe 6 Protro Sail All-Star FQ3546-100 Ship Now</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Size 13 - Air Jordan 1 Retro OG High Black Toe Reimagined</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Nike Zoom Kobe 6 Protro 'All-Star 2.0' MENS FQ3546-100 IN HANDS SHIPS NOW</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Nike Kobe 6 Protro 'Sail' All Star  FQ3546-100 Size 8 - 13 BRAND NEW</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Size 11 - Air Jordan 1 Retro OG Low Black Toe</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Nike Zoom Kobe 6 Protro 'All-Star 2.0' PREORDER SHIPS 02/13</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>NIKE KOBE 6 PROTRO SAIL ALL STAR (FQ3546-100)</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Air Jordan 1 Retro High OG Black Toe Reimagined DZ5485-106</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Size 9 Nike Zoom Kobe 6 Protro All Star 2.0 FQ3546-100 Brand New SHIPS FAST</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Nike Kobe 6 Protro Sail All-Star FQ3546-100 Ship Now  **IN HAND SHIP NOW**</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Rolex Submariner Mens 40mm Date 16610 SS Vintage Running Automatic Wrist Watch</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Cartier Santos Carree Ref: 2961 18K Yellow Gold / S. Steel 29mm Automatic Watch</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Omega Speedmaster 145022 71 ST  Chronograph Vintage Pilots Watch 1039 516</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Cartier Tank Must XL Automatic Wristwatch WSTA0040 w/Spare Straps, Box &amp; Papers</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Factory Service Breitling Superocean Heritage II Chronograph 18K SS Wrist Watch</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Rolex Oyster Perpetual Day-Date Ref. 1803 Champagne Dial 36mm #W150325-1</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Patek Philippe 3543 Gubelin Roman Dial Vintage 18k Gold Box and Papers 1969</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Rolex OP Datejust Thunderbird Men's 36mm 16263 Two-Tone Wristwatch #W145913-1</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Grand Seiko Hi-Beat 36000 80 Hours SLGH021 "Genbi Valley" Watch 2024 LE 1/1000</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>ROLEX MENS EXPLORER II 16570 GMT DATE 40MM STAINLESS STEEL BLACK Box And papers</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt></alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt></alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt></alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt></alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt></alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt></alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt></alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Soundcore Life Q20 Wireless Over-Ear Headphones ANC Bluetooth Headset|Refurbish</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Lenovo Thinkpad T14 G1 14" FHD Intel Core i5 10310U 16GB RAM 512GB SSD W11P</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>HP TP01-3016 Desktop Intel i5-12400 Intel UHD 730 12GB DDR4 RAM 256GB SSD W11H</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>JBL Partybox 110 Portable Bluetooth Party Speaker w/ 160W Powerful Sound, Black</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Lenovo Yoga 7 2-In-1 14IML9 14" Touch Ultra 5 125U 16GB 1TB Win11P FPR CAM 2Y</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>JBL Tune 710BT, Wireless Over-Ear Headphones</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Soundcore Boom 2 Outdoor Speaker LED Portable Subwoofer BassUp 2.0 IPX7|Refurb</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Shark Upright Vacuum LA481HGN Rotator Lift-Away ADV Upright Hair Pro Brushroll</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>HP ENVY TE01-4000 Desktop Intel Core i5-13400 1.8 GHz 8GB DDR4 256GB SSD W11H</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Reconditioned Olympus E-M10 Mark IV Mirrorless Camera w/ 14-42mm EZ Lens (Black)</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt></alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt></alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt></alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt></alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt></alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt></alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt></alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt></alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt></alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Samsung Galaxy S21 5G SM-G991U1 128GB Unlocked Excellent</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Nintendo Switch Lite 32GB + Screen Protector 🛡️ + FREE 2-DAY Shipping ✈️</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>EcoFlow Solar Generator RIVER 2 Pro 768Wh+110W Solar Panel Certified Refurbished</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Rachel Koen Diamond Love Chain Bracelet 18K White Gold 0.12cttw</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>JBL Bar 1300X 1170W 11.1.4-Ch Soundbar w/ Detachable Surround Speakers</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Clore JNC770 Green 1700 Peak Amp Premium 12 Volt Jump Starter SOLJNC770G New!</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Shark ZU100 Rotator Vacuum Cleaner for Pet Hair, Navy (Certified Refurbished)</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Google Pixel 7 5G 128GB (Factory Unlocked) - Excellent</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Samsung Galaxy S21 5G SM-G991U1 128GB Unlocked Excellent</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Nintendo Switch Lite 32GB + Screen Protector 🛡️ + FREE 2-DAY Shipping ✈️</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>EcoFlow Solar Generator RIVER 2 Pro 768Wh+110W Solar Panel Certified Refurbished</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Rachel Koen Diamond Love Chain Bracelet 18K White Gold 0.12cttw</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>JBL Bar 1300X 1170W 11.1.4-Ch Soundbar w/ Detachable Surround Speakers</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Clore JNC770 Green 1700 Peak Amp Premium 12 Volt Jump Starter SOLJNC770G New!</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Shark ZU100 Rotator Vacuum Cleaner for Pet Hair, Navy (Certified Refurbished)</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt>Google Pixel 7 5G 128GB (Factory Unlocked) - Excellent</alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt></alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt></alt>
    </imgTags>
    <imgTags>
      <src>https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif</src>
      <alt></alt>
    </imgTags>
    <responseBody></responseBody>
    <viewport>width=device-width, initial-scale=1, user-scalable=yes, minimum-scale=1</viewport>
    <X-UA-Compatible>IE=edge</X-UA-Compatible>
    <_x0033_60-site-verification>5f0e3731bf6d3fc8b2f58b1a585a788f</_x0033_60-site-verification>
    <fb_x003A_app_id>102628213125203</fb_x003A_app_id>
    <msvalidate.01>34E98E6F27109BE1A9DCF19658EEEE33</msvalidate.01>
    <referrer>unsafe-url</referrer>
    <y_key>acf32e2a69cbc2b0</y_key>
    <google-site-verification>8kHr3jd3Z43q1ovwo0KVgo_NZKIEMjthBxti8m8fYTg</google-site-verification>
    <google-adsense-account>sites-7757056108965234</google-adsense-account>
    <yandex-verification>6e11485a66d91eff</yandex-verification>
  </data>
</Root>
YAML Response
200 OK
status: ok
error: 
data:
  requestUrl: https://ebay.com
  url: https://www.ebay.com/
  canonical: https://www.ebay.com
  lang: en
  charset: utf-8
  title: Electronics, Cars, Fashion, Collectibles & More | eBay
  image: ''
  favicons:
  - rel: icon
    href: https://pages.ebay.com/favicon.ico
  author: ''
  description: Buy & sell electronics, cars, clothes, collectibles & more on eBay, the world's online marketplace. Top brands, low prices & free shipping on many items.
  keywords: ''
  source: ''
  price: ''
  priceCurrency: ''
  availability: ''
  robots: ''
  jsonld:
  - '@context': https://schema.org
    '@type': WebPage
    '@id': https://www.ebay.com/#webpage
    url: https://www.ebay.com
    author:
      '@type': Corporation
      '@id': https://www.ebay.com/#corporation
      url: https://www.ebay.com
      logo: https://ir.ebaystatic.com/rs/v/fxxj3ttftm5ltcqnto1o4baovyl.png
      description: eBay Inc. is an American multinational e-commerce corporation based in San Jose, California, that facilitates consumer-to-consumer and business-to-consumer sales through its website. eBay was founded by Pierre Omidyar in the autumn of 1995, and became a notable success story of the dot-com bubble. eBay is a multibillion-dollar business with operations in about 30 countries, as of 2011. The company manages the eBay website, an online auction and shopping website in which people and businesses buy and sell a wide variety of goods and services worldwide. The website is free to use for buyers, but sellers are charged fees for listing items after a limited number of free listings, and again when those items are sold.
      founder:
        '@type': Person
        '@id': https://www.ebay.com/#founder
        name: Pierre Omidyar
      foundingDate: 1995-09-03
      foundingLocation: San Jose, CA
      name: eBay
      legalName: eBay Inc.
      contactPoint:
        '@type': ContactPoint
        availableLanguage:
        - '@type': Language
          name: English
          alternateName: en
        - '@type': Language
          name: Spanish
          alternateName: es
        contactOption: TollFree
        contactType: Customer Service
        telephone: +1-866-961-9253
    isPartOf:
      '@type': WebSite
      '@id': https://www.ebay.com/#website
      url: https://www.ebay.com
      potentialAction:
        '@type': SearchAction
        target: https://www.ebay.com/sch/i.html?_nkw={srch_str}&ssPageName=GSTL
        query-input: required name=srch_str
    inLanguage: EN
    sameAs:
    - https://www.facebook.com/ebay/
    - https://www.pinterest.com/ebay/
    - https://twitter.com/eBay
    - https://www.linkedin.com/company/ebay/
    - https://www.youtube.com/ebay
    - https://www.instagram.com/ebay/
  og:url: https://www.ebay.com
  og:locale: ''
  og:locale:alternate: ''
  og:title: Electronics, Cars, Fashion, Collectibles & More | eBay
  og:type: website
  og:description: Buy & sell electronics, cars, clothes, collectibles & more on eBay, the world's online marketplace. Top brands, low prices & free shipping on many items.
  og:determiner: ''
  og:site_name: eBay
  og:image: https://ir.ebaystatic.com/cr/v/c1/ebay-logo-1-1200x630-margin.png
  og:image:secure_url: ''
  og:image:type: ''
  og:image:width: ''
  og:image:height: ''
  twitter:title: Electronics, Cars, Fashion, Collectibles & More | eBay
  twitter:description: Buy & sell electronics, cars, clothes, collectibles & more on eBay, the world's online marketplace. Top brands, low prices & free shipping on many items.
  twitter:image: https://ir.ebaystatic.com/cr/v/c1/ebay-logo-1-1200x1200-margin.png
  twitter:image:alt: ''
  twitter:card: summary
  twitter:site: '@eBay'
  twitter:site:id: ''
  twitter:url: ''
  twitter:account_id: ''
  twitter:creator: ''
  twitter:creator:id: ''
  twitter:player: ''
  twitter:player:width: ''
  twitter:player:height: ''
  twitter:player:stream: ''
  twitter:app:name:iphone: ''
  twitter:app:id:iphone: ''
  twitter:app:url:iphone: ''
  twitter:app:name:ipad: ''
  twitter:app:id:ipad: ''
  twitter:app:url:ipad: ''
  twitter:app:name:googleplay: ''
  twitter:app:id:googleplay: ''
  twitter:app:url:googleplay: ''
  headings:
  - level: h4
    text: Parts & Accessories
  - level: h4
    text: Vehicles
  - level: h4
    text: Top Categories
  - level: h4
    text: Additional Categories
  - level: h4
    text: Top Categories
  - level: h4
    text: Featured
  - level: h4
    text: Top Categories
  - level: h4
    text: Additional Categories
  - level: h4
    text: Top Categories
  - level: h4
    text: Additional Categories
  - level: h4
    text: Top Categories
  - level: h4
    text: Featured
  - level: h4
    text: Top Categories
  - level: h4
    text: Popular Topics
  - level: h4
    text: Top Categories
  - level: h4
    text: Additional Categories
  - level: h4
    text: Top Categories
  - level: h4
    text: Top Brands
  - level: h4
    text: Shop eBay Refurbished Electronics
  - level: h4
    text: Shop eBay Refurbished Home
  - level: h2
    text: Games you love. Cards you covet.
  - level: h2
    text: Trending in Sneakers
  - level: h3
    text: Nike Kobe 6 Protro Sail All-Star FQ3546-100 Ship Now
  - level: h3
    text: Size 13 - Air Jordan 1 Retro OG High Black Toe Reimagined
  - level: h3
    text: Nike Zoom Kobe 6 Protro 'All-Star 2.0' MENS FQ3546-100 IN HANDS SHIPS NOW
  - level: h3
    text: Nike Kobe 6 Protro 'Sail' All Star  FQ3546-100 Size 8 - 13 BRAND NEW
  - level: h3
    text: Size 11 - Air Jordan 1 Retro OG Low Black Toe
  - level: h3
    text: Nike Zoom Kobe 6 Protro 'All-Star 2.0' PREORDER SHIPS 02/13
  - level: h3
    text: NIKE KOBE 6 PROTRO SAIL ALL STAR (FQ3546-100)
  - level: h3
    text: Air Jordan 1 Retro High OG Black Toe Reimagined DZ5485-106
  - level: h3
    text: Size 9 Nike Zoom Kobe 6 Protro All Star 2.0 FQ3546-100 Brand New SHIPS FAST
  - level: h3
    text: Nike Kobe 6 Protro Sail All-Star FQ3546-100 Ship Now  **IN HAND SHIP NOW**
  - level: h2
    text: Trending in Watches
  - level: h3
    text: Rolex Submariner Mens 40mm Date 16610 SS Vintage Running Automatic Wrist Watch
  - level: h3
    text: 'Cartier Santos Carree Ref: 2961 18K Yellow Gold / S. Steel 29mm Automatic Watch'
  - level: h3
    text: Omega Speedmaster 145022 71 ST  Chronograph Vintage Pilots Watch 1039 516
  - level: h3
    text: Cartier Tank Must XL Automatic Wristwatch WSTA0040 w/Spare Straps, Box & Papers
  - level: h3
    text: Factory Service Breitling Superocean Heritage II Chronograph 18K SS Wrist Watch
  - level: h3
    text: 'Rolex Oyster Perpetual Day-Date Ref. 1803 Champagne Dial 36mm #W150325-1'
  - level: h3
    text: Patek Philippe 3543 Gubelin Roman Dial Vintage 18k Gold Box and Papers 1969
  - level: h3
    text: "Rolex OP Datejust Thunderbird Men's 36mm 16263 Two-Tone Wristwatch #W145913-1"
  - level: h3
    text: Grand Seiko Hi-Beat 36000 80 Hours SLGH021 "Genbi Valley" Watch 2024 LE 1/1000
  - level: h3
    text: ROLEX MENS EXPLORER II 16570 GMT DATE 40MM STAINLESS STEEL BLACK Box And papers
  - level: h2
    text: Score these trending kicks
  - level: h3
    text: Travis Scott x Jordan 1 Low Velvet Brown
  - level: h3
    text: Nike Air Diamond Turf 49ers 2025
  - level: h3
    text: Jordan 5 Retro OG Metallic Reimagined
  - level: h3
    text: Jordan 3 Retro Black Cat 2025
  - level: h3
    text: Jordan 1 High Black Toe Reimagined
  - level: h3
    text: Nike Zoom Kobe 5 Protro Year of the Mamba
  - level: h3
    text: Jordan 3 Retro Black Cement 2024
  - level: h2
    text: Trending in Refurbished
  - level: h3
    text: Soundcore Life Q20 Wireless Over-Ear Headphones ANC Bluetooth Headset|Refurbish
  - level: h3
    text: Lenovo Thinkpad T14 G1 14" FHD Intel Core i5 10310U 16GB RAM 512GB SSD W11P
  - level: h3
    text: HP TP01-3016 Desktop Intel i5-12400 Intel UHD 730 12GB DDR4 RAM 256GB SSD W11H
  - level: h3
    text: JBL Partybox 110 Portable Bluetooth Party Speaker w/ 160W Powerful Sound, Black
  - level: h3
    text: Lenovo Yoga 7 2-In-1 14IML9 14" Touch Ultra 5 125U 16GB 1TB Win11P FPR CAM 2Y
  - level: h3
    text: JBL Tune 710BT, Wireless Over-Ear Headphones
  - level: h3
    text: Soundcore Boom 2 Outdoor Speaker LED Portable Subwoofer BassUp 2.0 IPX7|Refurb
  - level: h3
    text: Shark Upright Vacuum LA481HGN Rotator Lift-Away ADV Upright Hair Pro Brushroll
  - level: h3
    text: HP ENVY TE01-4000 Desktop Intel Core i5-13400 1.8 GHz 8GB DDR4 256GB SSD W11H
  - level: h3
    text: Reconditioned Olympus E-M10 Mark IV Mirrorless Camera w/ 14-42mm EZ Lens (Black)
  - level: h2
    text: eBay Live
  - level: h2
    text: Conquer cold weather
  - level: h3
    text: Snow Blowers
  - level: h3
    text: Cozy Bedding
  - level: h3
    text: Generators
  - level: h3
    text: Men’s Coats
  - level: h3
    text: Women’s Coats
  - level: h3
    text: Tires
  - level: h3
    text: Thermostats
  - level: h2
    text: Today's Deals
  - level: h3
    text: Samsung Galaxy S21 5G SM-G991U1 128GB Unlocked Excellent
  - level: h3
    text: "Nintendo Switch Lite 32GB + Screen Protector \U0001F6E1️ + FREE 2-DAY Shipping ✈️"
  - level: h3
    text: EcoFlow Solar Generator RIVER 2 Pro 768Wh+110W Solar Panel Certified Refurbished
  - level: h3
    text: Rachel Koen Diamond Love Chain Bracelet 18K White Gold 0.12cttw
  - level: h3
    text: JBL Bar 1300X 1170W 11.1.4-Ch Soundbar w/ Detachable Surround Speakers
  - level: h3
    text: Clore JNC770 Green 1700 Peak Amp Premium 12 Volt Jump Starter SOLJNC770G New!
  - level: h3
    text: Shark ZU100 Rotator Vacuum Cleaner for Pet Hair, Navy (Certified Refurbished)
  - level: h3
    text: Google Pixel 7 5G 128GB (Factory Unlocked) - Excellent
  - level: h2
    text: Today's Deals
  - level: h3
    text: Samsung Galaxy S21 5G SM-G991U1 128GB Unlocked Excellent
  - level: h3
    text: "Nintendo Switch Lite 32GB + Screen Protector \U0001F6E1️ + FREE 2-DAY Shipping ✈️"
  - level: h3
    text: EcoFlow Solar Generator RIVER 2 Pro 768Wh+110W Solar Panel Certified Refurbished
  - level: h3
    text: Rachel Koen Diamond Love Chain Bracelet 18K White Gold 0.12cttw
  - level: h3
    text: JBL Bar 1300X 1170W 11.1.4-Ch Soundbar w/ Detachable Surround Speakers
  - level: h3
    text: Clore JNC770 Green 1700 Peak Amp Premium 12 Volt Jump Starter SOLJNC770G New!
  - level: h3
    text: Shark ZU100 Rotator Vacuum Cleaner for Pet Hair, Navy (Certified Refurbished)
  - level: h3
    text: Google Pixel 7 5G 128GB (Factory Unlocked) - Excellent
  imgTags:
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: ''
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: ''
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Sealed boxes
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Singles
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Sealed packs
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Sealed boxes
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Singles
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Sealed packs
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Motors
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Electronics
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Refurbished finds
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Motors
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Electronics
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Refurbished finds
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Nike Kobe 6 Protro Sail All-Star FQ3546-100 Ship Now
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Size 13 - Air Jordan 1 Retro OG High Black Toe Reimagined
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Nike Zoom Kobe 6 Protro 'All-Star 2.0' MENS FQ3546-100 IN HANDS SHIPS NOW
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Nike Kobe 6 Protro 'Sail' All Star  FQ3546-100 Size 8 - 13 BRAND NEW
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Size 11 - Air Jordan 1 Retro OG Low Black Toe
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Nike Zoom Kobe 6 Protro 'All-Star 2.0' PREORDER SHIPS 02/13
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: NIKE KOBE 6 PROTRO SAIL ALL STAR (FQ3546-100)
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Air Jordan 1 Retro High OG Black Toe Reimagined DZ5485-106
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Size 9 Nike Zoom Kobe 6 Protro All Star 2.0 FQ3546-100 Brand New SHIPS FAST
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Nike Kobe 6 Protro Sail All-Star FQ3546-100 Ship Now  **IN HAND SHIP NOW**
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Rolex Submariner Mens 40mm Date 16610 SS Vintage Running Automatic Wrist Watch
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: 'Cartier Santos Carree Ref: 2961 18K Yellow Gold / S. Steel 29mm Automatic Watch'
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Omega Speedmaster 145022 71 ST  Chronograph Vintage Pilots Watch 1039 516
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Cartier Tank Must XL Automatic Wristwatch WSTA0040 w/Spare Straps, Box & Papers
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Factory Service Breitling Superocean Heritage II Chronograph 18K SS Wrist Watch
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: 'Rolex Oyster Perpetual Day-Date Ref. 1803 Champagne Dial 36mm #W150325-1'
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Patek Philippe 3543 Gubelin Roman Dial Vintage 18k Gold Box and Papers 1969
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: "Rolex OP Datejust Thunderbird Men's 36mm 16263 Two-Tone Wristwatch #W145913-1"
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Grand Seiko Hi-Beat 36000 80 Hours SLGH021 "Genbi Valley" Watch 2024 LE 1/1000
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: ROLEX MENS EXPLORER II 16570 GMT DATE 40MM STAINLESS STEEL BLACK Box And papers
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: ''
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: ''
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: ''
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: ''
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: ''
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: ''
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: ''
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Soundcore Life Q20 Wireless Over-Ear Headphones ANC Bluetooth Headset|Refurbish
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Lenovo Thinkpad T14 G1 14" FHD Intel Core i5 10310U 16GB RAM 512GB SSD W11P
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: HP TP01-3016 Desktop Intel i5-12400 Intel UHD 730 12GB DDR4 RAM 256GB SSD W11H
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: JBL Partybox 110 Portable Bluetooth Party Speaker w/ 160W Powerful Sound, Black
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Lenovo Yoga 7 2-In-1 14IML9 14" Touch Ultra 5 125U 16GB 1TB Win11P FPR CAM 2Y
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: JBL Tune 710BT, Wireless Over-Ear Headphones
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Soundcore Boom 2 Outdoor Speaker LED Portable Subwoofer BassUp 2.0 IPX7|Refurb
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Shark Upright Vacuum LA481HGN Rotator Lift-Away ADV Upright Hair Pro Brushroll
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: HP ENVY TE01-4000 Desktop Intel Core i5-13400 1.8 GHz 8GB DDR4 256GB SSD W11H
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Reconditioned Olympus E-M10 Mark IV Mirrorless Camera w/ 14-42mm EZ Lens (Black)
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: ''
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: ''
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: ''
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: ''
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: ''
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: ''
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: ''
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: ''
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: ''
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Samsung Galaxy S21 5G SM-G991U1 128GB Unlocked Excellent
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: "Nintendo Switch Lite 32GB + Screen Protector \U0001F6E1️ + FREE 2-DAY Shipping ✈️"
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: EcoFlow Solar Generator RIVER 2 Pro 768Wh+110W Solar Panel Certified Refurbished
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Rachel Koen Diamond Love Chain Bracelet 18K White Gold 0.12cttw
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: JBL Bar 1300X 1170W 11.1.4-Ch Soundbar w/ Detachable Surround Speakers
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Clore JNC770 Green 1700 Peak Amp Premium 12 Volt Jump Starter SOLJNC770G New!
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Shark ZU100 Rotator Vacuum Cleaner for Pet Hair, Navy (Certified Refurbished)
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Google Pixel 7 5G 128GB (Factory Unlocked) - Excellent
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Samsung Galaxy S21 5G SM-G991U1 128GB Unlocked Excellent
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: "Nintendo Switch Lite 32GB + Screen Protector \U0001F6E1️ + FREE 2-DAY Shipping ✈️"
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: EcoFlow Solar Generator RIVER 2 Pro 768Wh+110W Solar Panel Certified Refurbished
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Rachel Koen Diamond Love Chain Bracelet 18K White Gold 0.12cttw
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: JBL Bar 1300X 1170W 11.1.4-Ch Soundbar w/ Detachable Surround Speakers
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Clore JNC770 Green 1700 Peak Amp Premium 12 Volt Jump Starter SOLJNC770G New!
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Shark ZU100 Rotator Vacuum Cleaner for Pet Hair, Navy (Certified Refurbished)
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: Google Pixel 7 5G 128GB (Factory Unlocked) - Excellent
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: ''
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: ''
  - src: https://ir.ebaystatic.com/pictures/aw/pics/s_1x2.gif
    alt: ''
  responseBody: ''
  viewport: width=device-width, initial-scale=1, user-scalable=yes, minimum-scale=1
  X-UA-Compatible: IE=edge
  360-site-verification: 5f0e3731bf6d3fc8b2f58b1a585a788f
  fb:app_id: 102628213125203
  msvalidate.01: 34E98E6F27109BE1A9DCF19658EEEE33
  referrer: unsafe-url
  y_key: acf32e2a69cbc2b0
  google-site-verification: 8kHr3jd3Z43q1ovwo0KVgo_NZKIEMjthBxti8m8fYTg
  google-adsense-account: sites-7757056108965234
  yandex-verification: 6e11485a66d91eff

Response Structure

All API responses follow a consistent structure with the following fields:

FieldTypeDescriptionExample
statusstringIndicates whether the request was successful ("ok") or failed ("error")ok
errorstring | nullContains error message if status is "error", otherwise nullnull
dataobject | nullContains the API response data if successful, otherwise null{...}

Response Data Fields

When the request is successful, the data object contains the following fields:

FieldTypeSample Value
requestUrlstring"https://ebay.com"
urlstring"https://www.ebay.com/"
canonicalstring"https://www.ebay.com"
langstring"en"
charsetstring"utf-8"
titlestring"Electronics, Cars, Fashion, Collectibles & More | eBay"
imagestring""
faviconsarray[{"rel":"icon","href":"https://pages.ebay.com/favicon.ico"}]
authorstring""
descriptionstring"Buy & sell electronics, cars, clothes, collectibles & more on eBay, the world's online marketplace. Top brands, low prices & free shipping on many items."
keywordsstring""
sourcestring""
pricestring""
priceCurrencystring""
availabilitystring""
robotsstring""
jsonldarray[{"@context":"https://schema.org","@type":"WebPage","@id":"https://www.ebay.com/#webpage","url":"https://www.ebay.com","author":{"@type":"Corporation","@id":"https://www.ebay.com/#corporation","url":"https://www.ebay.com","logo":"https://ir.ebaystatic.com/rs/v/fxxj3ttftm5ltcqnto1o4baovyl.png","description":"eBay Inc. is an American multinational e-commerce corporation based in San Jose, California, that facilitates consumer-to-consumer and business-to-consumer sales through its website. eBay was founded by Pierre Omidyar in the autumn of 1995, and became a notable success story of the dot-com bubble. eBay is a multibillion-dollar business with operations in about 30 countries, as of 2011. The company manages the eBay website, an online auction and shopping website in which people and businesses buy and sell a wide variety of goods and services worldwide. The website is free to use for buyers, but sellers are charged fees for listing items after a limited number of free listings, and again when those items are sold.","founder":{"@type":"Person","@id":"https://www.ebay.com/#founder","name":"Pierre Omidyar"},"foundingDate":"1995-09-03","foundingLocation":"San Jose, CA","name":"eBay","legalName":"eBay Inc.","contactPoint":{"@type":"ContactPoint","availableLanguage":[{"@type":"Language","name":"English","alternateName":"en"},{"@type":"Language","name":"Spanish","alternateName":"es"}],"contactOption":"TollFree","contactType":"Customer Service","telephone":"+1-866-961-9253"}},"isPartOf":{"@type":"WebSite","@id":"https://www.ebay.com/#website","url":"https://www.ebay.com","potentialAction":{"@type":"SearchAction","target":"https://www.ebay.com/sch/i.html?_nkw={srch_str}&ssPageName=GSTL","query-input":"required name=srch_str"}},"inLanguage":"EN","sameAs":["https://www.facebook.com/ebay/","https://www.pinterest.com/ebay/","https://twitter.com/eBay","https://www.linkedin.com/company/ebay/","https://www.youtube.com/ebay","https://www.instagram.com/ebay/"]}]
og:urlstring"https://www.ebay.com"
og:localestring""
og:locale:alternatestring""

Headers

Required and optional headers for API requests:

Header NameRequiredExample ValueDescription
X-API-KeyYesyour_api_key_hereYour APIVerve API key. Found in your dashboard under API Keys.
AcceptNoapplication/jsonSpecify response format: application/json (default), application/xml, or application/yaml
User-AgentNoMyApp/1.0Identifies your application for analytics and debugging purposes
X-Request-IDNoreq_123456789Custom request identifier for tracking and debugging requests
Cache-ControlNono-cacheControl caching behavior for the request and response

Client Libraries

To get started with minimal code, most of our APIs are available through client libraries and clients:

Run in PostmanNPMPyPINuGetSwagger

Error Codes

The API uses standard HTTP status codes to indicate success or failure:

Status CodeMessageDescription
200OKRequest successful, data returned
400Bad RequestInvalid request parameters or malformed request
401UnauthorizedMissing or invalid API key
403ForbiddenAPI key does not have permission for this endpoint
429Too Many RequestsRate limit exceeded, please slow down requests
500Internal Server ErrorServer error, please try again later

What's Next?

Continue your journey with these recommended resources

Was this page helpful?

Help us improve our documentation