RSS to JSONRSS to JSON

Token Usage:5 per call

RSS to JSON is a simple tool for converting RSS feeds into JSON format. It returns the RSS feed in JSON format.

This API provides reliable and fast access to rss to json data through a simple REST interface. Built for developers who need consistent, high-quality results with minimal setup time.

To use this API, you need an API key. You can get one by creating a free account and visiting your dashboard.

View API in Directory

Endpoint

POST Request
POST https://api.apiverve.com/v1/rsstojson

Code Examples

Here are examples of how to call this API in different programming languages:

cURL Request
curl -X POST \
  "https://api.apiverve.com/v1/rsstojson" \
  -H "X-API-Key: your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{
  "url": "https://www.nasa.gov/rss/dyn/breaking_news.rss"
}'
JavaScript (Fetch API)
const response = await fetch('https://api.apiverve.com/v1/rsstojson', {
  method: 'POST',
  headers: {
    'X-API-Key': 'your_api_key_here',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    "url": "https://www.nasa.gov/rss/dyn/breaking_news.rss"
})
});

const data = await response.json();
console.log(data);
Python (Requests)
import requests

headers = {
    'X-API-Key': 'your_api_key_here',
    'Content-Type': 'application/json'
}

payload = {
    "url": "https://www.nasa.gov/rss/dyn/breaking_news.rss"
}

response = requests.post('https://api.apiverve.com/v1/rsstojson', headers=headers, json=payload)

data = response.json()
print(data)
Node.js (Native HTTPS)
const https = require('https');
const url = require('url');

const options = {
  method: 'POST',
  headers: {
    'X-API-Key': 'your_api_key_here',
    'Content-Type': 'application/json'
  }
};

const postData = JSON.stringify({
  "url": "https://www.nasa.gov/rss/dyn/breaking_news.rss"
});

const req = https.request('https://api.apiverve.com/v1/rsstojson', options, (res) => {
  let data = '';
  res.on('data', (chunk) => data += chunk);
  res.on('end', () => console.log(JSON.parse(data)));
});

req.write(postData);
req.end();
PHP (cURL)
<?php

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, 'https://api.apiverve.com/v1/rsstojson');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt($ch, CURLOPT_HTTPHEADER, [
    'X-API-Key: your_api_key_here',
    'Content-Type: application/json'
]);

curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode({
    'url': 'https://www.nasa.gov/rss/dyn/breaking_news.rss'
}));

$response = curl_exec($ch);
curl_close($ch);

$data = json_decode($response, true);
print_r($data);

?>
Go (net/http)
package main

import (
    "fmt"
    "io"
    "net/http"
    "bytes"
    "encoding/json"
)

func main() {
    payload := map[string]interface{}{
        "url": "https://www.nasa.gov/rss/dyn/breaking_news.rss"
    }

    jsonPayload, _ := json.Marshal(payload)
    req, _ := http.NewRequest("POST", "https://api.apiverve.com/v1/rsstojson", bytes.NewBuffer(jsonPayload))

    req.Header.Set("X-API-Key", "your_api_key_here")
    req.Header.Set("Content-Type", "application/json")

    client := &http.Client{}
    resp, err := client.Do(req)
    if err != nil {
        panic(err)
    }
    defer resp.Body.Close()

    body, _ := io.ReadAll(resp.Body)
    fmt.Println(string(body))
}
Ruby (Net::HTTP)
require 'net/http'
require 'json'

uri = URI('https://api.apiverve.com/v1/rsstojson')
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true

payload = {
  "url": "https://www.nasa.gov/rss/dyn/breaking_news.rss"
}

request = Net::HTTP::Post.new(uri)
request['X-API-Key'] = 'your_api_key_here'
request['Content-Type'] = 'application/json'

request.body = payload.to_json

response = http.request(request)
puts JSON.pretty_generate(JSON.parse(response.body))

Authentication

This API requires authentication via API key. Include your API key in the request header:

Required Header
X-API-Key: your_api_key_here

Parameters

The following parameters are available for this API endpoint:

ParameterTypeRequiredLocationDescriptionExample
urlstringYesbodyThe URL of the RSS feed you want converted into JSON formathttps://www.nasa.gov/rss/dyn/breaking_news.rss

Response

The API returns responses in JSON, XML, and YAML formats:

Example Responses

JSON Response
200 OK
{
  "status": "ok",
  "error": null,
  "data": {
    "source": "www.nasa.gov",
    "articles": 10,
    "maxReached": false,
    "feed": [
      {
        "website": "NASA",
        "title": "60 Years Ago: Ranger 8 Moon Photos Aid in Apollo Site Selection ",
        "pubDate": "Thu, 20 Feb 2025 20:59:33 +0000",
        "description": "Before Apollo astronauts set foot upon the Moon, much remained unknown about the lunar surface. While most scientists believed the Moon had a solid surface that would support astronauts and their landing craft, a few believed a deep layer of dust covered it that would swallow any visitors. Until 1964, no closeup photographs of the […]",
        "link": "https://www.nasa.gov/history/60-years-ago-ranger-8-moon-photos-aid-in-apollo-site-selection/"
      },
      {
        "website": "NASA",
        "title": "55 Years Ago: Preps for Apollo 13 and 14, Apollo 12 Crew on World Tour",
        "pubDate": "Thu, 20 Feb 2025 19:06:38 +0000",
        "description": "With two months to go before flight, the Apollo 13 prime crew of James Lovell, Thomas Mattingly, Fred Haise, and backups John Young, John Swigert, and Charles Duke continued to train for the 10-day mission planned to land in the Fra Mauro highlands region of the Moon. Engineers continued to prepare the Saturn V rocket […]",
        "link": "https://www.nasa.gov/history/55-years-ago-preps-for-apollo-13-and-14-apollo-12-crew-on-world-tour/"
      },
      {
        "website": "NASA",
        "title": "NASA Invites Media to Simulated Mars Habitat Before Next Mission",
        "pubDate": "Thu, 20 Feb 2025 19:02:19 +0000",
        "description": "Media are invited to visit NASA’s simulated Mars habitat on Monday, March 10, at the agency’s Johnson Space Center in Houston. The simulation will help prepare humanity for future missions to the Red Planet. This is the second of three missions as part of NASA’s CHAPEA (Crew Health and Performance Exploration Analog), set to begin […]",
        "link": "https://www.nasa.gov/news-release/nasa-invites-media-to-simulated-mars-habitat-before-next-mission/"
      },
      {
        "website": "NASA",
        "title": "In Memoriam: Jeff Dozier [1944–2024]",
        "pubDate": "Thu, 20 Feb 2025 18:55:58 +0000",
        "description": "Jeff Dozier, an environmental scientist, snow hydrologist, researcher, academic – and former Earth Observing System Project Scientist – died on November 17, 2024. Jeff’s research focused on snow hydrology and biogeochemistry in mountain environments and addressed the role of stored and melting snow in the hydrologic cycle as well as the economic and social impact […]",
        "link": "https://science.nasa.gov/science-research/earth-science/in-memoriam-jeff-dozier-1944-2024/"
      },
      {
        "website": "NASA",
        "title": "In Memoriam: Berrien Moore III [1941–2024]",
        "pubDate": "Thu, 20 Feb 2025 18:54:46 +0000",
        "description": "Berrien Moore III, Dean of the College of Atmospheric and Geographic Sciences at the University of Oklahoma (OU), director of the National Weather Center in Norman, OK, and Vice President for Weather and Climate Programs, died on December 17, 2024. Berrien earned an undergraduate degree from the University of North Carolina in 1963 and a doctorate […]",
        "link": "https://science.nasa.gov/science-research/earth-science/in-memoriam-berrien-moore-iii-1941-2024/"
      },
      {
        "website": "NASA",
        "title": "Artemis II Rocket Booster Stacking Complete",
        "pubDate": "Thu, 20 Feb 2025 16:52:15 +0000",
        "description": "Engineers at NASA’s Kennedy Space Center in Florida completed stacking the twin SLS (Space Launch System) solid rocket boosters – seen in this Feb. 19, 2025, photo – inside the Vehicle Assembly Building for the agency’s Artemis II crewed test flight around the Moon. During stacking operations, which began Nov. 20, 2024, technicians used a massive overhead crane to […]",
        "link": "https://www.nasa.gov/image-article/artemis-ii-rocket-booster-stacking-complete/"
      },
      {
        "website": "NASA",
        "title": "NASA Stennis Teams Install New Production RS-25 Engine for Upcoming Hot Fire",
        "pubDate": "Thu, 20 Feb 2025 16:04:38 +0000",
        "description": "NASA marked a key milestone Feb. 18 with installation of RS-25 engine No. E20001, the first new production engine to help power the SLS (Space Launch System) rocket on future Artemis missions to the Moon. The engine, built by lead SLS engines contractor L3Harris (formerly Aerojet Rocketdyne), was installed on the Fred Haise Test Stand […]",
        "link": "https://www.nasa.gov/image-article/stennis-teams-install-new-production-rs-25-engine/"
      },
      {
        "website": "NASA",
        "title": "In Memoriam: Pierre Morel [1933–2024]",
        "pubDate": "Thu, 20 Feb 2025 14:54:30 +0000",
        "description": "Pierre Morel, the first director of the World Climate Research Programme (WCRP) and founding member of WCRP’s Global Energy and Water Exchanges (GEWEX) Core project, died on December 10, 2024. Pierre began his research as a theoretical physicist. His doctoral thesis examined the existence and properties of a condensed superfluid state of liquid Helium 3 […]",
        "link": "https://science.nasa.gov/science-research/earth-science/in-memoriam-pierre-morel-1933-2024/"
      },
      {
        "website": "NASA",
        "title": "Lunar Cold Electronics Assessment Workshop (Apr 30 – May 1, 2025)",
        "pubDate": "Thu, 20 Feb 2025 14:53:08 +0000",
        "description": "How to Attend The workshop will be hosted by NASA Jet Propulsion Laboratory.Virtual and in-person attendance are available. Registration is required for both. (Link coming soon!)Virtual attendees will receive connection information one week before the workshop. Background, Goals and Objectives Preliminary Agenda Points of Contact If you have any questions regarding the workshop, please contact […]",
        "link": "https://www.nasa.gov/centers-and-facilities/nesc/lunar-cold-electronics-assessment-workshop/"
      },
      {
        "website": "NASA",
        "title": "Summary of the Joint NASA LCLUC–SARI Synthesis Meeting",
        "pubDate": "Thu, 20 Feb 2025 14:52:36 +0000",
        "description": "Introduction The NASA Land-Cover and Land-Use Change (LCLUC) is an interdisciplinary scientific program within NASA’s Earth Science program that aims to develop the capability for periodic global inventories of land use and land cover from space. The program’s goal is to develop the mapping, monitoring and modeling capabilities necessary to simulate the processes taking place and […]",
        "link": "https://science.nasa.gov/science-research/earth-science/summary-of-the-joint-nasa-lcluc-sari-synthesis-meeting/"
      }
    ]
  }
}
XML Response
200 OK
<Root>
  <status>ok</status>
  <error />
  <data>
    <source>www.nasa.gov</source>
    <articles>10</articles>
    <maxReached>false</maxReached>
    <feed>
      <website>NASA</website>
      <title>60 Years Ago: Ranger 8 Moon Photos Aid in Apollo Site Selection </title>
      <pubDate>Thu, 20 Feb 2025 20:59:33 +0000</pubDate>
      <description>Before Apollo astronauts set foot upon the Moon, much remained unknown about the lunar surface. While most scientists believed the Moon had a solid surface that would support astronauts and their landing craft, a few believed a deep layer of dust covered it that would swallow any visitors. Until 1964, no closeup photographs of the […]</description>
      <link>https://www.nasa.gov/history/60-years-ago-ranger-8-moon-photos-aid-in-apollo-site-selection/</link>
    </feed>
    <feed>
      <website>NASA</website>
      <title>55 Years Ago: Preps for Apollo 13 and 14, Apollo 12 Crew on World Tour</title>
      <pubDate>Thu, 20 Feb 2025 19:06:38 +0000</pubDate>
      <description>With two months to go before flight, the Apollo 13 prime crew of James Lovell, Thomas Mattingly, Fred Haise, and backups John Young, John Swigert, and Charles Duke continued to train for the 10-day mission planned to land in the Fra Mauro highlands region of the Moon. Engineers continued to prepare the Saturn V rocket […]</description>
      <link>https://www.nasa.gov/history/55-years-ago-preps-for-apollo-13-and-14-apollo-12-crew-on-world-tour/</link>
    </feed>
    <feed>
      <website>NASA</website>
      <title>NASA Invites Media to Simulated Mars Habitat Before Next Mission</title>
      <pubDate>Thu, 20 Feb 2025 19:02:19 +0000</pubDate>
      <description>Media are invited to visit NASA’s simulated Mars habitat on Monday, March 10, at the agency’s Johnson Space Center in Houston. The simulation will help prepare humanity for future missions to the Red Planet. This is the second of three missions as part of NASA’s CHAPEA (Crew Health and Performance Exploration Analog), set to begin […]</description>
      <link>https://www.nasa.gov/news-release/nasa-invites-media-to-simulated-mars-habitat-before-next-mission/</link>
    </feed>
    <feed>
      <website>NASA</website>
      <title>In Memoriam: Jeff Dozier [1944–2024]</title>
      <pubDate>Thu, 20 Feb 2025 18:55:58 +0000</pubDate>
      <description>Jeff Dozier, an environmental scientist, snow hydrologist, researcher, academic – and former Earth Observing System Project Scientist – died on November 17, 2024. Jeff’s research focused on snow hydrology and biogeochemistry in mountain environments and addressed the role of stored and melting snow in the hydrologic cycle as well as the economic and social impact […]</description>
      <link>https://science.nasa.gov/science-research/earth-science/in-memoriam-jeff-dozier-1944-2024/</link>
    </feed>
    <feed>
      <website>NASA</website>
      <title>In Memoriam: Berrien Moore III [1941–2024]</title>
      <pubDate>Thu, 20 Feb 2025 18:54:46 +0000</pubDate>
      <description>Berrien Moore III, Dean of the College of Atmospheric and Geographic Sciences at the University of Oklahoma (OU), director of the National Weather Center in Norman, OK, and Vice President for Weather and Climate Programs, died on December 17, 2024. Berrien earned an undergraduate degree from the University of North Carolina in 1963 and a doctorate […]</description>
      <link>https://science.nasa.gov/science-research/earth-science/in-memoriam-berrien-moore-iii-1941-2024/</link>
    </feed>
    <feed>
      <website>NASA</website>
      <title>Artemis II Rocket Booster Stacking Complete</title>
      <pubDate>Thu, 20 Feb 2025 16:52:15 +0000</pubDate>
      <description>Engineers at NASA’s Kennedy Space Center in Florida completed stacking the twin SLS (Space Launch System) solid rocket boosters – seen in this Feb. 19, 2025, photo – inside the Vehicle Assembly Building for the agency’s Artemis II crewed test flight around the Moon. During stacking operations, which began Nov. 20, 2024, technicians used a massive overhead crane to […]</description>
      <link>https://www.nasa.gov/image-article/artemis-ii-rocket-booster-stacking-complete/</link>
    </feed>
    <feed>
      <website>NASA</website>
      <title>NASA Stennis Teams Install New Production RS-25 Engine for Upcoming Hot Fire</title>
      <pubDate>Thu, 20 Feb 2025 16:04:38 +0000</pubDate>
      <description>NASA marked a key milestone Feb. 18 with installation of RS-25 engine No. E20001, the first new production engine to help power the SLS (Space Launch System) rocket on future Artemis missions to the Moon. The engine, built by lead SLS engines contractor L3Harris (formerly Aerojet Rocketdyne), was installed on the Fred Haise Test Stand […]</description>
      <link>https://www.nasa.gov/image-article/stennis-teams-install-new-production-rs-25-engine/</link>
    </feed>
    <feed>
      <website>NASA</website>
      <title>In Memoriam: Pierre Morel [1933–2024]</title>
      <pubDate>Thu, 20 Feb 2025 14:54:30 +0000</pubDate>
      <description>Pierre Morel, the first director of the World Climate Research Programme (WCRP) and founding member of WCRP’s Global Energy and Water Exchanges (GEWEX) Core project, died on December 10, 2024. Pierre began his research as a theoretical physicist. His doctoral thesis examined the existence and properties of a condensed superfluid state of liquid Helium 3 […]</description>
      <link>https://science.nasa.gov/science-research/earth-science/in-memoriam-pierre-morel-1933-2024/</link>
    </feed>
    <feed>
      <website>NASA</website>
      <title>Lunar Cold Electronics Assessment Workshop (Apr 30 – May 1, 2025)</title>
      <pubDate>Thu, 20 Feb 2025 14:53:08 +0000</pubDate>
      <description>How to Attend The workshop will be hosted by NASA Jet Propulsion Laboratory.Virtual and in-person attendance are available. Registration is required for both. (Link coming soon!)Virtual attendees will receive connection information one week before the workshop. Background, Goals and Objectives Preliminary Agenda Points of Contact If you have any questions regarding the workshop, please contact […]</description>
      <link>https://www.nasa.gov/centers-and-facilities/nesc/lunar-cold-electronics-assessment-workshop/</link>
    </feed>
    <feed>
      <website>NASA</website>
      <title>Summary of the Joint NASA LCLUC–SARI Synthesis Meeting</title>
      <pubDate>Thu, 20 Feb 2025 14:52:36 +0000</pubDate>
      <description>Introduction The NASA Land-Cover and Land-Use Change (LCLUC) is an interdisciplinary scientific program within NASA’s Earth Science program that aims to develop the capability for periodic global inventories of land use and land cover from space. The program’s goal is to develop the mapping, monitoring and modeling capabilities necessary to simulate the processes taking place and […]</description>
      <link>https://science.nasa.gov/science-research/earth-science/summary-of-the-joint-nasa-lcluc-sari-synthesis-meeting/</link>
    </feed>
  </data>
</Root>
YAML Response
200 OK
status: ok
error: 
data:
  source: www.nasa.gov
  articles: 10
  maxReached: false
  feed:
  - website: NASA
    title: '60 Years Ago: Ranger 8 Moon Photos Aid in Apollo Site Selection '
    pubDate: Thu, 20 Feb 2025 20:59:33 +0000
    description: Before Apollo astronauts set foot upon the Moon, much remained unknown about the lunar surface. While most scientists believed the Moon had a solid surface that would support astronauts and their landing craft, a few believed a deep layer of dust covered it that would swallow any visitors. Until 1964, no closeup photographs of the […]
    link: https://www.nasa.gov/history/60-years-ago-ranger-8-moon-photos-aid-in-apollo-site-selection/
  - website: NASA
    title: '55 Years Ago: Preps for Apollo 13 and 14, Apollo 12 Crew on World Tour'
    pubDate: Thu, 20 Feb 2025 19:06:38 +0000
    description: With two months to go before flight, the Apollo 13 prime crew of James Lovell, Thomas Mattingly, Fred Haise, and backups John Young, John Swigert, and Charles Duke continued to train for the 10-day mission planned to land in the Fra Mauro highlands region of the Moon. Engineers continued to prepare the Saturn V rocket […]
    link: https://www.nasa.gov/history/55-years-ago-preps-for-apollo-13-and-14-apollo-12-crew-on-world-tour/
  - website: NASA
    title: NASA Invites Media to Simulated Mars Habitat Before Next Mission
    pubDate: Thu, 20 Feb 2025 19:02:19 +0000
    description: Media are invited to visit NASA’s simulated Mars habitat on Monday, March 10, at the agency’s Johnson Space Center in Houston. The simulation will help prepare humanity for future missions to the Red Planet. This is the second of three missions as part of NASA’s CHAPEA (Crew Health and Performance Exploration Analog), set to begin […]
    link: https://www.nasa.gov/news-release/nasa-invites-media-to-simulated-mars-habitat-before-next-mission/
  - website: NASA
    title: 'In Memoriam: Jeff Dozier [1944–2024]'
    pubDate: Thu, 20 Feb 2025 18:55:58 +0000
    description: Jeff Dozier, an environmental scientist, snow hydrologist, researcher, academic – and former Earth Observing System Project Scientist – died on November 17, 2024. Jeff’s research focused on snow hydrology and biogeochemistry in mountain environments and addressed the role of stored and melting snow in the hydrologic cycle as well as the economic and social impact […]
    link: https://science.nasa.gov/science-research/earth-science/in-memoriam-jeff-dozier-1944-2024/
  - website: NASA
    title: 'In Memoriam: Berrien Moore III [1941–2024]'
    pubDate: Thu, 20 Feb 2025 18:54:46 +0000
    description: Berrien Moore III, Dean of the College of Atmospheric and Geographic Sciences at the University of Oklahoma (OU), director of the National Weather Center in Norman, OK, and Vice President for Weather and Climate Programs, died on December 17, 2024. Berrien earned an undergraduate degree from the University of North Carolina in 1963 and a doctorate […]
    link: https://science.nasa.gov/science-research/earth-science/in-memoriam-berrien-moore-iii-1941-2024/
  - website: NASA
    title: Artemis II Rocket Booster Stacking Complete
    pubDate: Thu, 20 Feb 2025 16:52:15 +0000
    description: Engineers at NASA’s Kennedy Space Center in Florida completed stacking the twin SLS (Space Launch System) solid rocket boosters – seen in this Feb. 19, 2025, photo – inside the Vehicle Assembly Building for the agency’s Artemis II crewed test flight around the Moon. During stacking operations, which began Nov. 20, 2024, technicians used a massive overhead crane to […]
    link: https://www.nasa.gov/image-article/artemis-ii-rocket-booster-stacking-complete/
  - website: NASA
    title: NASA Stennis Teams Install New Production RS-25 Engine for Upcoming Hot Fire
    pubDate: Thu, 20 Feb 2025 16:04:38 +0000
    description: NASA marked a key milestone Feb. 18 with installation of RS-25 engine No. E20001, the first new production engine to help power the SLS (Space Launch System) rocket on future Artemis missions to the Moon. The engine, built by lead SLS engines contractor L3Harris (formerly Aerojet Rocketdyne), was installed on the Fred Haise Test Stand […]
    link: https://www.nasa.gov/image-article/stennis-teams-install-new-production-rs-25-engine/
  - website: NASA
    title: 'In Memoriam: Pierre Morel [1933–2024]'
    pubDate: Thu, 20 Feb 2025 14:54:30 +0000
    description: Pierre Morel, the first director of the World Climate Research Programme (WCRP) and founding member of WCRP’s Global Energy and Water Exchanges (GEWEX) Core project, died on December 10, 2024. Pierre began his research as a theoretical physicist. His doctoral thesis examined the existence and properties of a condensed superfluid state of liquid Helium 3 […]
    link: https://science.nasa.gov/science-research/earth-science/in-memoriam-pierre-morel-1933-2024/
  - website: NASA
    title: Lunar Cold Electronics Assessment Workshop (Apr 30 – May 1, 2025)
    pubDate: Thu, 20 Feb 2025 14:53:08 +0000
    description: How to Attend The workshop will be hosted by NASA Jet Propulsion Laboratory.Virtual and in-person attendance are available. Registration is required for both. (Link coming soon!)Virtual attendees will receive connection information one week before the workshop. Background, Goals and Objectives Preliminary Agenda Points of Contact If you have any questions regarding the workshop, please contact […]
    link: https://www.nasa.gov/centers-and-facilities/nesc/lunar-cold-electronics-assessment-workshop/
  - website: NASA
    title: Summary of the Joint NASA LCLUC–SARI Synthesis Meeting
    pubDate: Thu, 20 Feb 2025 14:52:36 +0000
    description: Introduction The NASA Land-Cover and Land-Use Change (LCLUC) is an interdisciplinary scientific program within NASA’s Earth Science program that aims to develop the capability for periodic global inventories of land use and land cover from space. The program’s goal is to develop the mapping, monitoring and modeling capabilities necessary to simulate the processes taking place and […]
    link: https://science.nasa.gov/science-research/earth-science/summary-of-the-joint-nasa-lcluc-sari-synthesis-meeting/

Response Structure

All API responses follow a consistent structure with the following fields:

FieldTypeDescriptionExample
statusstringIndicates whether the request was successful ("ok") or failed ("error")ok
errorstring | nullContains error message if status is "error", otherwise nullnull
dataobject | nullContains the API response data if successful, otherwise null{...}

Response Data Fields

When the request is successful, the data object contains the following fields:

FieldTypeSample Value
sourcestring"www.nasa.gov"
articlesnumber10
maxReachedbooleanfalse
feedarray[{"website":"NASA","title":"60 Years Ago: Ranger 8 Moon Photos Aid in Apollo Site Selection ","pubDate":"Thu, 20 Feb 2025 20:59:33 +0000","description":"Before Apollo astronauts set foot upon the Moon, much remained unknown about the lunar surface. While most scientists believed the Moon had a solid surface that would support astronauts and their landing craft, a few believed a deep layer of dust covered it that would swallow any visitors. Until 1964, no closeup photographs of the […]","link":"https://www.nasa.gov/history/60-years-ago-ranger-8-moon-photos-aid-in-apollo-site-selection/"}, ...]

Headers

Required and optional headers for API requests:

Header NameRequiredExample ValueDescription
X-API-KeyYesyour_api_key_hereYour APIVerve API key. Found in your dashboard under API Keys.
AcceptNoapplication/jsonSpecify response format: application/json (default), application/xml, or application/yaml
User-AgentNoMyApp/1.0Identifies your application for analytics and debugging purposes
X-Request-IDNoreq_123456789Custom request identifier for tracking and debugging requests
Cache-ControlNono-cacheControl caching behavior for the request and response

Client Libraries

To get started with minimal code, most of our APIs are available through client libraries and clients:

Run in PostmanNPMPyPINuGetSwagger

Error Codes

The API uses standard HTTP status codes to indicate success or failure:

Status CodeMessageDescription
200OKRequest successful, data returned
400Bad RequestInvalid request parameters or malformed request
401UnauthorizedMissing or invalid API key
403ForbiddenAPI key does not have permission for this endpoint
429Too Many RequestsRate limit exceeded, please slow down requests
500Internal Server ErrorServer error, please try again later

What's Next?

Continue your journey with these recommended resources

Was this page helpful?

Help us improve our documentation