POST /api/osf/nodes
Price: 5 credits
Get one OSF project by its GUID. Returns the title, description, category, subject taxonomy, tags, the DOI and ARK OSF minted for it, the licence with its copyright record, the affiliated institutions, the parent and root project, and every named contributor with ORCID, employment and education history and public profile links.
A GUID identifies a project, a registration or a preprint, and this route answers only for projects — a registration GUID comes back as 412 and belongs on /osf/registrations, a preprint GUID likewise on /osf/preprints. For a GUID already known to be a project, OSF returns the same 412 whether it does not exist or the project is private, so that 412 alone is not evidence the id is wrong. `contributors` is the authorship list in `index` order and is the only place author names appear — /osf/nodes/search does not carry them. `subjects[].path` keeps the full taxonomy branch, while `text` is its leaf.
access-token string requiredtimeout integer — Max scrapping execution timeout (in seconds) (default: 300; min: 20; max: 1500)node string required — OSF project GUID — the five characters after osf.io/ — or the address of its OSF page (examples: "jsd4k", "https://osf.io/jsd4k/"; minLength: 1)@type string (default: "OsfNodeDetail")id string requiredurl string requireddescription string nullablecategory string nullablecreated_at string nullablemodified_at string nullabletags array (default: [])subjects array (default: [])@type string (default: "OsfSubject")id string requiredtext string requiredpath array (default: [])custom_citation string nullablelicense_record object nullable@type string (default: "OsfLicenseRecord")year string nullablecopyright_holders array (default: [])is_public boolean nullableis_fork boolean nullableis_collection boolean nullableis_preprint boolean nullableis_registration boolean nullableis_wiki_enabled boolean nullableare_access_requests_enabled boolean nullabledoi string nullableark string nullableparent_id string nullableroot_id string nullablestorage_region string nullablelicense object nullable@type string (default: "OsfLicense")id string nullablename string nullableurl string nullablerequired_fields array (default: [])contributors array (default: [])@type string (default: "OsfContributor")id string nullablefull_name string requiredgiven_name string nullablefamily_name string nullablemiddle_names string nullablesuffix string nullableorcid string nullableprofile_url string nullableimage string nullablepermission string nullableindex integer nullableis_bibliographic boolean nullableis_registered boolean nullableis_active boolean nullableis_curator boolean nullablelocale string nullabletimezone string nullableregistered_at string nullableemployment array (default: [])@type string (default: "OsfPosition")institution string requireddepartment string nullabledegree string nullablestart_year integer nullablestart_month integer nullableend_year integer nullableend_month integer nullableis_ongoing boolean nullableeducation array (default: [])@type string (default: "OsfPosition")institution string requireddepartment string nullabledegree string nullablestart_year integer nullablestart_month integer nullableend_year integer nullableend_month integer nullableis_ongoing boolean nullablesocial object nullable@type string (default: "OsfSocialProfiles")github string nullablelinkedin string nullabletwitter string nullablegoogle_scholar string nullableresearch_gate string nullableresearcher_id string nullableimpact_story string nullableacademia_profile_id string nullableacademia_institution string nullablebaidu_scholar string nullablessrn string nullablewebsites array (default: [])affiliated_institutions array (default: [])@type string (default: "OsfInstitution")id string requiredname string nullableurl string nullableror_url string nullable422 — The request body did not validate Check the fields against this schema. A URN with the wrong prefix is the most common cause.408 — The request ran past its time limit Raise `timeout` in the request body, up to the maximum this endpoint documents. Lowering `count` or turning off the `with_*` flags also helps, because less work finishes sooner.412 — No public OSF project carries this GUID Retrying will not help: either the entity does not exist, or the input points at a different one.429 — Too many requests: a rate limit or a usage window is exhausted When the response carries an X-Retry-After header, wait that many seconds and retry: the same number is in the body as `detail.retry_after`, and the limit clears once that window passes. The message in the body names the limit that was hit.500 — Something broke on our side Retrying will not help. If it keeps happening, send us the X-Request-ID from the response headers.529 — Rate limit reached, or the endpoint is overloaded Wait at least 30 seconds, then retry.X-Error — Error message text (present only on error)X-Request-ID — Unique request identifierX-Execution-Time — Execution time in secondsX-Result-Count — How many records the body carries. 0 means an empty result, which is a normal answer and not by itself an error. A non-zero count can come back together with X-Error when the failure happened partway through — read this header and X-Error independently.X-Total-Available-Results — How many records exist for this query, when the endpoint can say. On a `dry_run` request this is the answer and the body is empty. It saturates: the endpoint's documented maximum means 'at least that many', any smaller number is exact.X-Warning — Present when the request body carried keys this endpoint does not document. They were ignored, so any filter you meant to apply through them did not apply. Check the spelling against this schema and retry.X-Retry-After — Seconds to wait before retrying. Present only on 429.