Discover/Joias Nagalli API
live

Joias Nagalli APIjoiasnagalli.com.br

Access Nagalli's wholesale sterling silver 925 rings catalog via API. Retrieve product IDs, names, image URLs, and pagination across the full collection.

This API takes change requests — .
Endpoint health
verified 2d ago
list_rings
1/1 passing latest checkself-healing
Endpoints
1
Updated
16d ago

What is the Joias Nagalli API?

The Joias Nagalli API provides access to the wholesale sterling silver 925 rings catalog from joiasnagalli.com.br through 1 endpoint, returning up to 5 fields per ring. The list_rings endpoint retrieves product IDs, names, product URLs, and image URLs across a paginated catalog, with controls for page number, sort order, and per-page item count.

This call costs1 credit / call— charged only on success
Try it
Page number (1-based).
Sort order for results.
Number of rings per page. Accepted values: 16, 25, 50, 75, 100.
api.parse.bot/scraper/47935887-e116-4e47-8181-09070797e09c/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/47935887-e116-4e47-8181-09070797e09c/list_rings?page=1&sort=default&limit=100' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace joiasnagalli-com-br-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Nagalli SDK — bounded, re-runnable; every call capped."""
from parse_apis.joiasnagalli_com_br_api import Nagalli, Sort, ParseError

client = Nagalli()

# List rings sorted by name, capped at 3 total items
for ring in client.rings.list(sort=Sort.NAME_ASC, limit=3):
    print(ring.name, ring.url)

# Take the first ring from the default sort
first = client.rings.list(limit=1).first()
if first:
    print(first.product_id, first.name, first.image)

# Typed error handling around a list call
try:
    for ring in client.rings.list(sort=Sort.PRICE_ASC, limit=2):
        print(ring.name, ring.product_id)
except ParseError as e:
    print(f"error: {e}")

print("exercised: rings.list")
All endpoints · 1 totalmissing one? ·

List all wholesale silver 925 rings from the Nagalli catalog. Results are auto-iterated across pages. Each ring includes its product ID, name, product URL, and image URL. Prices are not publicly visible (require login).

Input
ParamTypeDescription
pageintegerPage number (1-based).
sortstringSort order for results.
limitintegerNumber of rings per page. Accepted values: 16, 25, 50, 75, 100.
Response
{
  "type": "object",
  "fields": {
    "page": "current page number",
    "limit": "items per page",
    "rings": "array of ring objects with product_id, name, url, image",
    "total": "total number of rings in catalog",
    "total_pages": "total number of pages"
  },
  "sample": {
    "data": {
      "page": 1,
      "limit": 100,
      "rings": [
        {
          "url": "https://www.joiasnagalli.com.br/atacado/aneis-prata925-atacado/an0309-09-anel-falange-regulável-pontos-de-luz-prata925-atacado",
          "name": "Anel Falange Regulável em Prata 925 Pontos de Luz",
          "image": "https://www.joiasnagalli.com.br/atacado/image/cache/catalog/produtos/ANEL/an0309-capa-500x500.jpg",
          "product_id": "3188"
        }
      ],
      "total": 101,
      "total_pages": 2
    },
    "status": "success"
  }
}

About the Joias Nagalli API

What the API Returns

The list_rings endpoint exposes Nagalli's wholesale sterling silver 925 rings catalog. Each ring object in the response includes a product_id, name, url (linking to the product page on joiasnagalli.com.br), and image URL. The response also surfaces catalog-level metadata: total (total rings available), total_pages, page (current page), and limit (items returned per page).

Pagination and Filtering

Results are paginated using a 1-based page parameter. The limit parameter accepts discrete values — 16, 25, 50, 75, or 100 — controlling how many rings appear per response. A sort parameter is accepted to order results. Iteration across the full catalog is supported by checking total_pages and incrementing page accordingly.

Coverage Notes

This API covers the atacado (wholesale) silver 925 rings section of the Nagalli catalog. Prices are not included in responses because they require a logged-in wholesale account on the source site. The catalog scope is limited to rings; other jewelry categories such as bracelets, earrings, or necklaces are not included in this API.

Reliability & maintenanceVerified

The Joias Nagalli API is a managed, monitored endpoint for joiasnagalli.com.br — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when joiasnagalli.com.br changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official joiasnagalli.com.br API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
2d ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a wholesale jewelry sourcing tool that displays Nagalli's silver 925 ring catalog with names and images.
  • Sync Nagalli ring product IDs and names into an internal inventory or product database.
  • Monitor the total ring count over time to detect catalog additions or removals.
  • Generate an image gallery of available wholesale rings by collecting all image URLs across pages.
  • Cross-reference Nagalli ring product URLs with other wholesale supplier catalogs for comparison.
  • Automate catalog crawling using total_pages to iterate through the full ring inventory programmatically.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does joiasnagalli.com.br offer an official developer API?+
Nagalli does not publish an official public developer API. This Parse API provides structured access to their wholesale silver 925 rings catalog data.
What does the list_rings endpoint return for each ring?+
Each ring object includes a product_id, name, url to the product page, and an image URL. The response also includes total, total_pages, page, and limit for navigating the catalog.
Why are prices not included in the response?+
Prices on joiasnagalli.com.br are only visible to logged-in wholesale accounts. Because they are not publicly accessible, price data is not returned by this API. The API covers product identity and image fields that are publicly available.
Does the API cover other jewelry categories beyond silver 925 rings?+
Not currently. The API covers only the wholesale silver 925 rings section of the Nagalli catalog. Other categories such as earrings, bracelets, necklaces, or gold items are not included. You can fork this API on Parse and revise it to add endpoints for those other catalog sections.
How does pagination work, and what page sizes are supported?+
Pagination uses a 1-based page parameter. The limit parameter accepts values of 16, 25, 50, 75, or 100 items per page. Use total_pages from any response to determine how many requests are needed to cover the full catalog.
Page content last updated . Spec covers 1 endpoint from joiasnagalli.com.br.
Related APIs in EcommerceSee all →
caratlane.com API
Search for jewelry products, browse category listings, and retrieve detailed product information from Caratlane's catalog along with featured homepage items. Access real-time jewelry data including pricing, specifications, and availability across their complete collection.
lista.mercadolivre.com.br API
Search and browse products from Mercado Livre Brazil, view detailed pricing and offers, and explore categories to find daily deals and product information. Get comprehensive product details including specifications and current market offers all in one place.
cleanorigin.com API
Search and browse Clean Origin's diamonds, engagement rings, and jewelry collections while viewing detailed product information and customer reviews. Find exactly what you're looking for by exploring specific subcategories and comparing diamonds and rings based on their detailed specs.
ruby-lane.com API
Search and browse antiques, collectibles, and jewelry listings on Ruby Lane, view detailed item information including prices and descriptions, and discover shop profiles and inventory. Find exactly what you're looking for across multiple shops or explore specific categories to compare items and sellers.
marisa.com.br API
Search and browse Marisa.com.br's fashion inventory to discover products by category, view detailed item information, and see what other shoppers are currently searching for. Access the complete category structure and identify trending products to stay updated on popular styles from this leading Brazilian fashion retailer.
natura.com.br API
Browse Natura's complete product catalog, search for items by category or keyword, and retrieve detailed product information including prices, descriptions, ingredients, and customer reviews. Supports category navigation, faceted filtering, and paginated search results.
miraorthopediquedz.shop API
Browse and retrieve orthopedic products and medical supplies from Mira Orthopedique DZ's online store, including product details, pricing, and availability. Find the right parapharmacy items for your orthopedic needs by searching through their complete product catalog.
thewatchpages.com API
Browse current luxury watch collections from top brands and access detailed product information including reference numbers, model names, retail prices, and direct product links. Find exactly what you're looking for across multiple luxury watchmakers in one unified platform.