Skip to content

Instantly share code, notes, and snippets.

@Fabaderheld
Last active June 30, 2023 12:35
Show Gist options
  • Save Fabaderheld/0dab459e2c07dc84c8ea17391b8f7588 to your computer and use it in GitHub Desktop.
Save Fabaderheld/0dab459e2c07dc84c8ea17391b8f7588 to your computer and use it in GitHub Desktop.
Invoke-RestMethod -Uri "https://comicvine.gamespot.com/api/volumes/?api_key=$ComicVineAPIKey&filter=name:ironman&format=json"
Invoke-RestMethod -Uri "https://comicvine.gamespot.com/api/characters/?api_key=$ComicVineAPIKey&filter=name:ironman&format=json"
Invoke-RestMethod -Uri "https://comicvine.gamespot.com/api/characters/?api_key=$ComicVineAPIKey&format=json"
(Invoke-RestMethod -Uri "https://comicvine.gamespot.com/api/characters/?api_key=$ComicVineAPIKey&format=json").result
(Invoke-RestMethod -Uri "https://comicvine.gamespot.com/api/characters/?api_key=$ComicVineAPIKey&format=json").results
(Invoke-RestMethod -Uri "https://comicvine.gamespot.com/api/characters/?api_key=$ComicVineAPIKey&format=json").results | Where-Object { $_.Name -like "*iron*" }
(Invoke-RestMethod -Uri "https://comicvine.gamespot.com/api/characters/?api_key=$ComicVineAPIKey&format=json").results | Where-Object { $_.Name -like "*iron*" } | Select-Object name
(Invoke-RestMethod -Uri "https://comicvine.gamespot.com/api/characters/?api_key=$ComicVineAPIKey&format=json").results | Where-Object { $_.Name -like "*Iron*" } | Select-Object name
Invoke-RestMethod -Uri "https://comicvine.gamespot.com/api/characters/?api_key=$ComicVineAPIKey&filter=gender:male&format=json"
(Invoke-RestMethod -Uri "https://comicvine.gamespot.com/api/characters/?api_key=$ComicVineAPIKey&filter=gender:male&format=json").results | Where-Object { $_.Name -like "Iron*" }
(Invoke-RestMethod -Uri "https://comicvine.gamespot.com/api/character/4005-1455/?api_key=$ComicVineAPIKey&format=json").results
((Invoke-RestMethod -Uri "https://comicvine.gamespot.com/api/character/4005-1455/?api_key=$ComicVineAPIKey&format=json").results).volume_credits
((Invoke-RestMethod -Uri "https://comicvine.gamespot.com/api/character/4005-1455/?api_key=$ComicVineAPIKey&format=json").results).issye_credits
((Invoke-RestMethod -Uri "https://comicvine.gamespot.com/api/character/4005-1455/?api_key=$ComicVineAPIKey&format=json").results).issue_credits
((Invoke-RestMethod -Uri "https://comicvine.gamespot.com/api/character/4005-1455/?api_key=$ComicVineAPIKey&format=json").results)
Add-Type -assembly "system.io.compression.filesystem"
((Invoke-RestMethod -Uri "https://comicvine.gamespot.com/api/issue/4000-120043/?api_key=$ComicVineAPIKey&format=json").results)
((Invoke-RestMethod -Uri "https://comicvine.gamespot.com/api/issue/4000-120043/?api_key=$ComicVineAPIKey&format=json").results).volume
((Invoke-RestMethod -Uri "https://comicvine.gamespot.com/api/issue/4000-120043/?api_key=$ComicVineAPIKey&format=json").results).volume | Select-Object *
((Invoke-RestMethod -Uri "https://comicvine.gamespot.com/api/volume/4050-2407/?api_key=$ComicVineAPIKey&format=json").results)
((Invoke-RestMethod -Uri "https://comicvine.gamespot.com/api/issue/4000-108913/?api_key=$ComicVineAPIKey&format=json").results).volume | Select-Object *
((Invoke-RestMethod -Uri "https://comicvine.gamespot.com/api/volume/4050-18220/?api_key=$ComicVineAPIKey&format=json").results)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment