# How do I get price feeds for stocks like AAPL at a particular timestamp? Current way is not working

**URL:** https://dev-forum.pyth.network/t/how-do-i-get-price-feeds-for-stocks-like-aapl-at-a-particular-timestamp-current-way-is-not-working/286
**Category:** Benchmarks(Historic Prices)
**Created:** [July 9, 2025, 8:27pm UTC](https://dev-forum.pyth.network/t/how-do-i-get-price-feeds-for-stocks-like-aapl-at-a-particular-timestamp-current-way-is-not-working/286 "2025-07-09T20:27:51Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![obumnwabude](https://yyz2.discourse-cdn.com/flex034/user_avatar/dev-forum.pyth.network/obumnwabude/32/76_2.png) [@obumnwabude](https://dev-forum.pyth.network/u/obumnwabude)
#### Post date: [July 9, 2025, 8:27pm UTC](https://dev-forum.pyth.network/t/how-do-i-get-price-feeds-for-stocks-like-aapl-at-a-particular-timestamp-current-way-is-not-working/286/1 "2025-07-09T20:27:51Z")

</div>

Currently trying to query for the price of different stocks on Pyth through the Benchmark Link: [Benchmarks - Swagger UI](https://benchmarks.pyth.network/docs#/Updates/price_updates_timestamp_route_v1_updates_price __timestamp__ get)

Specifically, I’m checking for the price at the end of the market per day (that’s 9 PM UTC)

Take AAPL for example: the price feed ID is 0x49f6b65cb1de6b10eaf75e7c03ca029c306d0357e91b5311b175084a5ad5568 and for the timestamp of 1752008400 (Tue 8th July)

When you make the API call to /v1/updates/price/{timestamp}, it responds with

> Unique historical price update for the given ids [‘49f6b65cb1de6b10eaf75e7c03ca029c306d0357e91b5311b175084a5ad5568’] and timestamp 1752008400 are not found

Please what is the issue?

---

<div class="post-metadata">

### Author: ![discourse\_ai\_spam](https://avatars.discourse-cdn.com/v4/letter/d/c68b51/32.png) [@discourse\_ai\_spam](https://dev-forum.pyth.network/u/discourse_ai_spam)
#### Post date: [July 10, 2025, 2:09pm UTC](https://dev-forum.pyth.network/t/how-do-i-get-price-feeds-for-stocks-like-aapl-at-a-particular-timestamp-current-way-is-not-working/286/2 "2025-07-10T14:09:06Z")

</div>



---

<div class="post-metadata">

### Author: ![nidhi](https://avatars.discourse-cdn.com/v4/letter/n/a5b964/32.png) [@nidhi](https://dev-forum.pyth.network/u/nidhi)
#### Post date: [July 10, 2025, 2:11pm UTC](https://dev-forum.pyth.network/t/how-do-i-get-price-feeds-for-stocks-like-aapl-at-a-particular-timestamp-current-way-is-not-working/286/3 "2025-07-10T14:11:01Z")

</div>

Hi @obumnwabude,

There are two issues with the provided data

1. The Price Feed ID has a typo, there’s an “8” at the end, which is missing. The correct Price Feed ID for Equity.US.AAPL/USD   
`0x49f6b65cb1de6b10eaf75e7c03ca029c306d0357e91b5311b175084a5ad55688`  
Please use the copy button provided to ensure the correctness.

2. The time provided is outside the working hours. Kindly check [https://docs.pyth.network/price-feeds/market-hours](https://docs.pyth.network/price-feeds/market-hours)

You are using `1752008400` which is Tuesday, July 8, 2025 9:00:00 PM GMT - 8th July 5PM ET.  
Working hours are until 4PM ET, if you use 8th July 4PM ET - `1752004800`, it should work as it is the end of the market day.

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex034/uploads/dev_pyth/original/1X/9181d8004d6d7f9f838ab95b545ece7770ed727e.png) [@system](https://dev-forum.pyth.network/u/system)
#### Post date: [July 10, 2025, 2:33pm UTC](https://dev-forum.pyth.network/t/how-do-i-get-price-feeds-for-stocks-like-aapl-at-a-particular-timestamp-current-way-is-not-working/286/4 "2025-07-10T14:33:26Z")

</div>


