Quickstart
Start using the Pure API in minutes
This guide will help you get started with the Pure API quickly. Follow these steps to make your first API request and start integrating with Pure’s precious metals marketplace.
Prerequisites
Before you begin, make sure you have:
- An API key from Pure (contact us at [email protected] to request one) OR OAuth credentials if you’re using OAuth authentication
- A tool for making HTTP requests (like cURL, Postman, or your preferred programming language)
Authentication
The Pure API supports two authentication methods:
API Key Authentication
For simple integrations, you can authenticate using your API key. Include your key in the x-api-key
header with each request:
OAuth Authentication
For more secure integrations, you can use OAuth authentication. First, obtain an access token:
Then use the token in subsequent requests with these headers:
Making Your First Request
Let’s verify your authentication is working by making a request to the authentication test endpoint:
If successful, you should receive a response like:
Getting Spot Prices
To retrieve current spot prices for precious metals:
This will return the current bid/ask prices and market status for all supported metals.
Retrieving Product Data
Get a Single Product
To retrieve information about a specific product:
Replace PRODUCT_ID
with the actual ID of the product you want to retrieve.
List Products
To retrieve a paginated list of products:
You can adjust the offset
and limit
parameters to control pagination.
Code Examples
JavaScript/Node.js
Using API Key
Using OAuth
Python
Using API Key
Using OAuth
Next Steps
Now that you’ve made your first API requests, you can:
- Explore the API Reference to learn about all available endpoints
- Integrate the API into your application
- Contact us at [email protected] if you have any questions or need assistance