Discover/Goldika API
live

Goldika APIgoldika.ir

Get real-time 18-karat gold buy and sell prices per gram in Toman from goldika.ir. Single endpoint, two price fields, updates throughout trading hours.

This API takes change requests — .
Endpoint health
verified 3h ago
get_gold_price
1/1 passing latest checkself-healing
Endpoints
1
Updated
3h ago

What is the Goldika API?

The Goldika.ir API exposes 1 endpoint — get_gold_price — that returns the current buy and sell prices for 18-karat gold per gram, denominated in Iranian Toman. The response delivers 3 fields: buy, sell, and unit, giving you everything needed to display or compare live gold prices without any pagination or filtering required.

This call costs1 credit / call— charged only on success
Try it

No input parameters required.

api.parse.bot/scraper/7f07c63d-7549-4815-bd4a-233f2611a08b/<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/7f07c63d-7549-4815-bd4a-233f2611a08b/get_gold_price' \
  -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 goldika-ir-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: Goldika SDK — fetch current 18k gold prices in Toman."""
from parse_apis.goldika_ir_api import Goldika, ParseError

client = Goldika()

# Fetch the current buy/sell prices for 18-karat gold (per gram).
try:
    price = client.gold_prices.get()
except ParseError as e:
    print(f"Could not retrieve gold price: {e.code}")
    raise

print(f"Buy:  {price.buy:,.0f} Toman/gram")
print(f"Sell: {price.sell:,.0f} Toman/gram")
print(f"Unit: {price.unit}")

print("exercised: gold_prices.get")
All endpoints · 1 totalmissing one? ·

Returns the current buy and sell prices for 18-karat gold (per gram) in Toman. One upstream request; no pagination. Prices update frequently throughout trading hours.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "buy": "Current buy price per gram of 18k gold in Toman (number)",
    "sell": "Current sell price per gram of 18k gold in Toman (number)",
    "unit": "Always 'geram18' indicating the price unit is one gram of 18k gold"
  },
  "sample": {
    "data": {
      "buy": 21811325.6,
      "sell": 21294061,
      "unit": "geram18"
    },
    "status": "success"
  }
}

About the Goldika API

What the API Returns

The get_gold_price endpoint returns the current market prices for 18-karat gold on goldika.ir. The response includes two price fields — buy and sell — each representing the per-gram price in Iranian Toman. A third field, unit, is always set to 'geram18', confirming the unit of measure is one gram of 18-karat gold. There are no required input parameters; a single call returns all available data.

Price Freshness

Prices on goldika.ir update frequently during active trading hours, so repeated calls to get_gold_price will reflect near-real-time market movements. Outside of trading hours, prices reflect the last published values from the source. There is no timestamp field in the response, so downstream applications tracking price history should record their own call timestamps.

Response Shape

The response is minimal and flat: { buy: number, sell: number, unit: 'geram18' }. The spread between buy and sell represents the dealer margin visible on goldika.ir at the time of the request. Both values are raw numbers in Toman — no currency conversion or formatting is applied.

Reliability & maintenanceVerified

The Goldika API is a managed, monitored endpoint for goldika.ir — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when goldika.ir 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 goldika.ir 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
3h 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
  • Display live 18K gold buy/sell prices on a Persian-language financial dashboard
  • Alert users when the spread between buy and sell exceeds a defined threshold
  • Log periodic buy and sell snapshots to build a historical gold price dataset in Toman
  • Feed current gold prices into a jewelry pricing calculator that adjusts product costs in Toman
  • Compare goldika.ir's sell price against other Iranian gold market sources for arbitrage signals
  • Power a Telegram or mobile bot that reports the latest 18K gold price on demand
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 goldika.ir have an official developer API?+
Goldika.ir does not publish an official public developer API or documented data feed. The Parse API is the structured way to retrieve this data programmatically.
What exactly does the `unit` field in the response mean?+
The unit field is always the string 'geram18', indicating that both the buy and sell prices represent the cost of one gram of 18-karat (750 fineness) gold in Iranian Toman. It is a fixed identifier, not a variable you can change.
Does the API return a timestamp showing when the prices were last updated?+
No timestamp field is included in the get_gold_price response. The API returns buy, sell, and unit only. If your application needs time-series data, you should record the timestamp of each API call on your end.
Does the API cover gold karats other than 18K, or gold coin prices?+
Not currently. The API covers only the 18-karat (per gram) buy and sell prices as reflected by the unit: 'geram18' field. Gold coin prices, 24K, or other karat weights are not included. You can fork this API on Parse and revise it to add endpoints for those additional gold types.
How often do the `buy` and `sell` prices change?+
Goldika.ir updates its prices frequently during trading hours, so consecutive calls made minutes apart may return different values. Outside active market hours, the values will remain at the last published price until the market reopens.
Page content last updated . Spec covers 1 endpoint from goldika.ir.
Related APIs in FinanceSee all →
wallgold.ir API
Track live 18-karat gold buy and sell prices in Iranian Toman currency directly from WallGold to make informed trading decisions. Get real-time market data instantly and stay updated on gold price movements throughout the day.
goldprice.org API
Track real-time and historical prices for gold, silver, and other precious metals, plus monitor gold performance metrics and view precious metals news. Get current cryptocurrency prices, lookup gold rates by country, and check gold stock prices all in one place.
groww.in API
Check current gold prices in India across 24K, 22K, and 18K purities with live rates per 10 grams. Stay updated on real-time precious metal valuations to make informed buying and selling decisions.
logammulia.com API
Track current and historical gold prices from Logam Mulia (ANTAM) with real-time per-gram pricing, price charts, price changes, and store location information. Get comprehensive gold price data to monitor market trends and find nearby purchasing locations.
usagold.com API
Get live and historical gold and silver prices from USAGOLD, including daily, weekly, and monthly data to track price trends over time. Access current market rates or retrieve price history summaries to monitor precious metal values.
huangjinjiage.cn API
Track real-time and historical prices for gold, silver, platinum, palladium, and oil across China and international markets. Monitor domestic oil prices by region, compare international commodity prices, and access current gold recycling rates and brand-specific pricing.
nobitex.ir API
Access live cryptocurrency market data from Nobitex, Iran's largest crypto exchange. Retrieve real-time prices, 24-hour volume, and price changes for all trading pairs, including IRT-quoted and USDT-quoted markets.
goodreturns.in API
Access real-time and historical gold prices across India. Retrieve daily gold rates for 18k, 22k, and 24k purity levels in INR, compare prices across major Indian cities, and explore recent price trends and monthly summaries.