Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sixarm/sixarm_etsy_api
SixArm.com » Etsy » API tools and examples
https://github.com/sixarm/sixarm_etsy_api
api curl etsy
Last synced: 25 days ago
JSON representation
SixArm.com » Etsy » API tools and examples
- Host: GitHub
- URL: https://github.com/sixarm/sixarm_etsy_api
- Owner: SixArm
- Created: 2014-11-10T00:09:28.000Z (about 10 years ago)
- Default Branch: main
- Last Pushed: 2023-09-15T19:26:23.000Z (over 1 year ago)
- Last Synced: 2024-05-02T00:54:44.684Z (8 months ago)
- Topics: api, curl, etsy
- Size: 4.88 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# Etsy »
API tools and examplesSetup:
api=https://openapi.etsy.com/v2
api_key=s8pzp4l9gzu5nrrzubz31coq
shop_id=FooBarTo get a shop:
curl "$api/shops/$shop_id?method=GET&api_key=$api_key"
To get listings:
curl "$api/shops/$shop_id/listings/active?method=GET&api_key=$api_key&fields=title,url&limit=100"
To get listings with main image:
curl "$api/shops/$shop_id/listings/active?method=GET&api_key=$api_key&fields=title,url&limit=100&includes=MainImage"