POST /api/osf/registrations/search
Price: 20 credits
Search public OSF registrations by title, description, tag, subject, category and creation or modification date. Returns each registration's GUID, title, description, the form it was registered on, the date it was frozen, its embargo and withdrawal state and its declarations about available data, materials, code and papers.
Use this to find preregistrations and registered reports on a topic, then take a GUID to /osf/registrations for the answers the researchers actually gave. Rows carry no authors and no form answers. `registration_supplement` names the template, which is the practical way to tell a preregistration from a registered report or an open-ended archive — but OSF will not filter on it, so narrow another way and read it off the rows. There is no filter on the registration date either: `created_since` and `modified_since` are about the underlying project, so a registration frozen today from a project made in 2019 will not match a recent `created_since`. An embargoed registration appears here with its title while its content stays closed until `embargo_end_date`, and a withdrawn one appears with `is_withdrawn` true. `tag` and `subject` must match a whole term.
access-token string requiredtimeout integer — Max scrapping execution timeout (in seconds) (default: 300; min: 20; max: 1500)title_contains string nullable — Keep only registrations whose title contains this text (examples: "memory"; minLength: 1)description string nullable — Keep only registrations whose description contains this text (examples: "randomised"; minLength: 1)tag string nullable — Keep only registrations carrying this tag, matched exactly (examples: "covid"; minLength: 1)subject string nullable — Keep only registrations filed under this subject taxonomy term (examples: "Psychology"; minLength: 1)category string nullable — Keep only registrations of this category (one of: "project", "analysis", "communication", "data", "hypothesis", "instrumentation", "methods and measures", "procedure", "software", "other")created_since string nullable — Keep only registrations whose underlying project was created on or after this date, as YYYY-MM-DD (examples: "2026-01-01"; minLength: 1)modified_since string nullable — Keep only registrations changed on or after this date, as YYYY-MM-DD (examples: "2026-01-01"; minLength: 1)sort string — Field the results are ordered by (default: "date_modified"; one of: "date_created", "date_modified", "title")sort_direction string — Ordering direction (default: "desc"; one of: "desc", "asc")count integer required — Max number of results (examples: 100; min: 1; max: 300)@type string (default: "OsfRegistration")id string requiredurl string requireddescription string nullablecategory string nullableregistration_supplement string nullablecreated_at string nullablemodified_at string nullableregistered_at string nullablewithdrawn_at string nullableembargo_end_date string nullablereviews_state string nullablerevision_state string nullablearticle_doi string nullablearchive_url string nullablewithdrawal_justification string nullabletags array (default: [])subjects array (default: [])@type string (default: "OsfSubject")id string requiredtext string requiredpath array (default: [])license_record object nullable@type string (default: "OsfLicenseRecord")year string nullablecopyright_holders array (default: [])is_public boolean nullableis_embargoed boolean nullableis_withdrawn boolean nullableis_archiving boolean nullableis_fork boolean nullableis_collection boolean nullableis_preprint boolean nullableis_wiki_enabled boolean nullablehas_project boolean nullablehas_data boolean nullablehas_materials boolean nullablehas_analytic_code boolean nullablehas_papers boolean nullablehas_supplements boolean nullableis_pending_registration_approval boolean nullableis_pending_embargo_approval boolean nullableis_pending_embargo_termination_approval boolean nullableis_pending_withdrawal boolean nullableare_access_requests_enabled boolean 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 — The entity was not found, or a precondition failed 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.