refactor: remove retired Options Strikes endpoint#21
Merged
Conversation
|
The author of this PR, MarketDataDev03, is not an activated member of this organization on Codecov. |
MarketDataDev01
approved these changes
Jun 29, 2026
974058a to
ca3704e
Compare
4e3836b to
0d1d2ec
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
refactor: remove retired Options Strikes endpoint
Closes #20.
The standalone Options Strikes endpoint (
GET /v1/options/strikes/{symbol}/) has beenretired — strikes data is now obtained via the chain endpoint. The docs already dropped the
strikes page (the API reference and the Python/PHP/Go SDK docs redirect
/options/strikes→/options/chain, anddocumentation@stagingremovedsdk/java/options/strikes.mdx). The Java SDKstill shipped the
strikes()method, so it exposed a dead endpoint. This removes it.Removed (strikes-endpoint only)
OptionsResource—strikes(...)/strikesAsync(...)/strikesSpec(...), theOptionsStrikesdeserializer registration, and now-unused importsOptionsCsvResource/OptionsHtmlResource—strikes()/strikesAsync()options/OptionsStrikesRequest,OptionsStrikesResponse,OptionsStrikesDeserializer,options/OptionsStrikes,options/ExpirationStrikesOptionsResourceTest(URL/params, decoding, envelope handling), thestrikes assertions in the CSV/HTML facet coverage tests and
RequestValidationTest, andOptionsIntegrationTest.strikesReturnsStrikesPerExpirationMarketDataClientjavadoc,README.md,docs/OPTIONS_REVIEW_GUIDE.mdKept (shared with chain — NOT part of the strikes endpoint)
options/StrikeFilterandoptions/StrikeRange— used byOptionsChainRequestfor the chainendpoint's strike filtering.
Testing
./gradlew buildpasses: unit tests, Spotless, andjacocoTestCoverageVerification(100% line coverage maintained).
(
OptionsStrikes,ExpirationStrikes,.strikes(,strikesSpec,options/strikes).Versioning
The SDK is pre-1.0 (0.x), so removing this endpoint is not a major/breaking bump under SemVer —
0.x explicitly allows API changes between minor releases. Bump the minor version (0.x → 0.(x+1)).