StarCitizenWiki / API

The star-citizen.wiki API. Automatically scrapes Comm-Links, Stats and In-Game Data.
https://api.star-citizen.wiki
MIT License
29 stars 5 forks source link

Keywords like 85x pulls non related article. #89

Closed austinkschmitz closed 1 year ago

austinkschmitz commented 1 year ago

curl -X 'POST' \ 'https://api.star-citizen.wiki/api/v2/galactapedia/search' \ -H 'accept: application/json' \ -H 'Content-Type: application/json' \ -d '{ "query": "85x" }'

returns The 85x article and Ellis Belt Alpha.

{ "id": "0Gz5jL9vgP", "title": "85x", "slug": "origin-85x", "thumbnail": "https://cig-galactapedia-prod.s3.amazonaws.com/upload/973b4072-d906-4bd6-bb91-7a425f2c6450", "type": "SpacecraftShip", "rsi_url": "https://robertsspaceindustries.com/galactapedia/article/0Gz5jL9vgP-origin-85x", "api_url": "https://api.star-citizen.wiki/api/v2/galactapedia/0Gz5jL9vgP", "created_at": "2021-02-08T00:46:03.000000Z" }, { "id": "02k585XkQe", "title": "Ellis Belt Alpha", "slug": "ellis-belt-alpha", "thumbnail": "https://cig-galactapedia-prod.s3.amazonaws.com/upload/bbd1aafa-d286-484b-ab90-63c1ec6a7ed1", "type": "PlanetMoonSpaceStationPlatform", "rsi_url": "https://robertsspaceindustries.com/galactapedia/article/02k585XkQe-ellis-belt-alpha", "api_url": "https://api.star-citizen.wiki/api/v2/galactapedia/02k585XkQe", "created_at": "2022-04-27T00:01:35.000000Z" }

Per: https://robertsspaceindustries.com/galactapedia/search?query=85x Only shows 1 article.

octfx commented 1 year ago

That’s due do the search endpoint also checking the id. Which in this case contains 85x.

But that’s not really useful here, I’ll update the endpoint in the next release

On Donnerstag, Nov. 09, 2023 at 9:43 PM, austinkschmitz @. @.)> wrote:

curl -X 'POST' \ 'https://api.star-citizen.wiki/api/v2/galactapedia/search' \ -H 'accept: application/json' \ -H 'Content-Type: application/json' \ -d '{ "query": "85x" }'

returns The 85x article and Ellis Belt Alpha.

{ "id": "0Gz5jL9vgP", "title": "85x", "slug": "origin-85x", "thumbnail": "https://cig-galactapedia-prod.s3.amazonaws.com/upload/973b4072-d906-4bd6-bb91-7a425f2c6450", "type": "SpacecraftShip", "rsi_url": "https://robertsspaceindustries.com/galactapedia/article/0Gz5jL9vgP-origin-85x", "api_url": "https://api.star-citizen.wiki/api/v2/galactapedia/0Gz5jL9vgP", "created_at": "2021-02-08T00:46:03.000000Z" }, { "id": "02k585XkQe", "title": "Ellis Belt Alpha", "slug": "ellis-belt-alpha", "thumbnail": "https://cig-galactapedia-prod.s3.amazonaws.com/upload/bbd1aafa-d286-484b-ab90-63c1ec6a7ed1", "type": "PlanetMoonSpaceStationPlatform", "rsi_url": "https://robertsspaceindustries.com/galactapedia/article/02k585XkQe-ellis-belt-alpha", "api_url": "https://api.star-citizen.wiki/api/v2/galactapedia/02k585XkQe", "created_at": "2022-04-27T00:01:35.000000Z" }

— Reply to this email directly, view it on GitHub (https://github.com/StarCitizenWiki/API/issues/89), or unsubscribe (https://github.com/notifications/unsubscribe-auth/ABSJ7PGDPYEPXQUTZBJJMATYDU57BAVCNFSM6AAAAAA7FFK7FKVHI2DSMVQWIX3LMV43ASLTON2WKOZRHE4DMMZXGQZDIMY). You are receiving this because you are subscribed to this thread.Message ID: @.***>

austinkschmitz commented 1 year ago

Ah, that is good to know. Ty!