POST /api/freelancer/projects/archive
Price: 10 credits
Search the full Freelancer.com project archive — millions of projects including closed, completed and frozen ones, not just the currently open listings. Supports the same filters as project search plus a lifecycle status filter, which makes it the endpoint for historical rate and demand analysis.
Search the historical Freelancer.com project archive (closed and completed projects included). Same filters as the project search endpoint — query, project_types, skills, countries, languages, upgrades, posted budget and hourly-rate ranges, average bid ranges, geo radius, sort — plus statuses (active/closed/frozen). Use this for historical pricing and demand analysis; use the project search endpoint for currently open work only.
access-token string requiredtimeout integer — Max scrapping execution timeout (in seconds) (default: 300; min: 20; max: 1500)query string nullable — Keyword to match against project title and description (examples: "python scraper")project_types array nullable — Keep only fixed-price and/or hourly projects (one of: "fixed", "hourly")skills array nullable — Skill ids the project must be tagged with (examples: [3,13])countries array nullable — Two-letter country codes of the client posting the project (examples: ["us","gb"])languages array nullable — Two-letter language codes the project is written in (examples: ["en"])upgrades array nullable — Keep only projects carrying these paid upgrades (one of: "featured", "urgent", "sealed", "NDA", "ip_contract", "assisted", "nonpublic", "fulltime", "qualified")min_budget number nullable — Lowest fixed-price budget the client posted (examples: 500; >: 0)max_budget number nullable — Highest fixed-price budget the client posted (examples: 5000; >: 0)min_avg_bid number nullable — Lowest average bid freelancers placed on the project (examples: 500; >: 0)max_avg_bid number nullable — Highest average bid freelancers placed on the project (examples: 5000; >: 0)min_hourly_rate number nullable — Lowest hourly rate the client posted (examples: 25; >: 0)max_hourly_rate number nullable — Highest hourly rate the client posted (examples: 150; >: 0)min_avg_hourly_bid number nullable — Lowest average hourly rate freelancers bid on the project (examples: 25; >: 0)max_avg_hourly_bid number nullable — Highest average hourly rate freelancers bid on the project (examples: 150; >: 0)latitude number nullable — Latitude to search local projects around (examples: 40.7128; min: -90; max: 90)longitude number nullable — Longitude to search local projects around (examples: -74.006; min: -180; max: 180)distance number nullable — Radius in kilometres around latitude/longitude (examples: 100; >: 0)sort string nullable — Ordering of the result list (one of: "time_updated", "bid_count", "relevance")reverse_sort boolean nullable — Flip the chosen orderingcount integer required — Max number of projects to return (min: 1)statuses array nullable — Keep only projects in these lifecycle states (one of: "active", "closed", "frozen")@type string (default: "FreelancerProject")id integer requiredproject_title string nullablealias string nullableproject_url string nullabledescription string nullablepreview_description string nullablestatus string nullablesub_status string nullablefrontend_status string nullableproject_type string nullablecurrency object nullable@type string (default: "FreelancerCurrency")code string nullablesign string nullablename string nullablecountry string nullableexchange_rate number nullablebudget object nullable@type string (default: "FreelancerProjectBudget")minimum number nullablemaximum number nullablehourly_info object nullable@type string (default: "FreelancerProjectHourlyInfo")commitment_hours integer nullablecommitment_interval string nullableduration string nullablebid_stats object nullable@type string (default: "FreelancerProjectBidStats")bid_count integer nullablebid_avg number nullablebid_period_days integer nullableskills array (default: [])@type string (default: "FreelancerSkill")id integer requiredname string nullablealias string nullablecategory_id integer nullablecategory_name string nullableis_local boolean nullableupgrades array (default: [])attachments array (default: [])@type string (default: "FreelancerProjectAttachment")filename string nullableurl string nullablelocation object nullable@type string (default: "FreelancerLocation")country string nullablecountry_code string nullablecity string nullableadministrative_area string nullablepostal_code string nullablelatitude number nullablelongitude number nullablelanguage string nullableis_local boolean nullableis_hidden_bids boolean nullableis_nonpublic boolean nullableis_escrow_project boolean nullablesubmitted_at integer nullableupdated_at integer nullableclient object nullable@type string (default: "FreelancerProjectClient")country string nullablecity string nullablerating number nullablereview_count integer nullablemember_since string nullableverifications array (default: [])422 — 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.