Ebay Tipstricks
Ebay Tipstricks
for
Advanced Sellers
instructor:
David A. Karp
author, eBay Hacks &
eBay PowerSeller: The Missing Manual
editor, PayPal Hacks
Disclaimers of the day: The views expressed in this presentation are
those of the presenter, and do not necessarily reflect those of eBay
Inc. / eBay and the eBay logo are trademarks of eBay Inc. / Please
don't take our picture or record the class without asking permission.
Include:
- Manufacturer name
- Model name
- Model number (e.g. SJ-27)
- What it is (e.g. camera, silverware, book, antique sword)
- Necessary variations
(e.g. SJ-27 SJ27, Barbecue Barbeque BBQ, Recumbent Recumbant)
- Weigh risk of selling too low with risk of not selling at all
Reserve Judgement
Starting Price,
Opening Value or Insertion Fee Does it make sense to
Reserve Price set starting price to
$0.01 - $0.99 $0.30
$1.00 - $9.99 $0.35
$9.99 to save 25¢?
$10.00 - $24.99 $0.60
$25.00 - $49.99 $1.20 Do the math:
$50.00 - $199.99 $2.40
$200.00 - $499.99 $3.60 1 bid at $9.99
$500.00 and up $4.80 vs.
1 bid at $12.99
2. Install Webalyzer
Use the API to write software and develop websites that connect
directly to the eBay engine
5. Go live and start using your application with real listing data!
use Getopt::Std;
getopts('d');
$keywords = shift @ARGV or die "Usage: $0 [-d] keywords";
PAGE:
while (1) {
my $rsp = call_api({ Verb => 'GetSearchResults',
DetailLevel => 0,
Query => $keywords,
SearchInDescription => $opt_d ? 1 : 0,
Skip => $page_number * 100,
});
if ($rsp->{Errors}) {
print_error($rsp);
last PAGE;
}
$current_time = $rsp->{eBayTime};
foreach (@{$rsp->{Search}{Items}{Item}}) {
my %i = %$_;
($price, $time, $title, $id) = @i{qw/CurrentPrice EndTime Title Id/};
print "($id) $title [\$$price, ends $time]\n";
}
last PAGE unless $rsp->{Search}{HasMoreItems};
$page_number++;
}
eBay Hacks
PayPal Hacks