Add columns from reconciled values not working via Wikidata

Hello everyone!

For several days now I encounter an error when reconciling with Wikidata.

I reconciled the items via Wikidata Qid without problem but when I try to use the “add columns from reconciled values” it does not recognise any property name.

The error is simply saying: “Sorry, something went wrong. Please try again later”

I have been using OR 3.9.5 but now downloaded the new version and the error still remains.

I have some personal wikibases connected with my OR and reconciliation/adding new columns works fine with them. Thus I assume the error is on Wikidata’s end.

Any tips? Or anyone else encountering this error?

Can confirm with 3.9.5: It happens when you type in a property name, not when using the suggested properties:

Column with „value as identifier”:

“normal” reconciled column:

That error could be more informative :(, but if you look on your browser's Javascript console, there may be more detail available.

Please create a ticket in our issue tracker with as much information as you're able to collect and we'll have a look.
https://github.com/OpenRefine/OpenRefine/issues/

Tom

This looks related to another recent thread reporting reconciliation failures:

In both cases the errors appear to come from the Wikidata reconciliation service (https://wikidata.reconci.link/en/api) rather than from OpenRefine itself. Reported symptoms include:

  • “No. of recon objects was less than no. of jobs”
  • “The reconciliation service returned an invalid response”
  • HTTP 403 errors during reconciliation operations

While investigating this, I also checked the service monitoring endpoint: https://wikidata.reconci.link/monitoring

Recent statistics show that the processing time per query has increased significantly compared to the 24-hour average, which suggests the service performance has deteriorated recently.

To help investigate this on the service side, I opened a task on Wikimedia Phabricator with logs and details: ⚓ T419770 Intermittent errors from Wikidata reconciliation service (wikidata.reconci.link) used by OpenRefine

Thanks Martin. That was a question that I realized that I left out of my reply - "What reconciliation service are you using?" I'm not sure who maintains the wikidata.reconci.link service these days (or if it is maintained).

Your Phabricator ticket says "intermittent" which I haven't seen in the other reports. Have you (or others) seen it work recently? If it is actually an intermittent failure, something that comes to mind is that this week's Wikidata newsletter mentioned more aggressive rate limits being introduced. I wonder if that could be related? (Although I'd expect a different error than 403 Forbidden). If it's a hard error, perhaps Wikidata changed some other aspect of their rules.

@tfmorris, here is a screenshot of my test today, on the same batch, I got a mix of success, 403, and errors

Thanks. That's weird that it's returning 403 Forbidden if it's a rate limit problem. I guess we'll have to wait for the Wikidata folks to sort it out. I confirmed that the 403 is coming from Wikidata and is not being generated by the reconciliation service (by running my own version of the service).

The property suggest/autocomplete problem might be a separate issue, because it never seems to work (unless I'm very, very unlucky).

I encountered this error too! Some days it works and reconciles everything, some days its full of that error (that was last week’s experience). I also noticed that the error always presents itself when I am reconciling using multiple properties e.g. the label and an ID property.

My original post was made about using https://wikidata.reconci.link/en/api too.

Update, today it is working for me, I do not know what happened, or if this is permanent.

I had a look at it when it was failing and the reconciliation service isn't sending the User-Agent header required by Wikidata for this particular case. That subjects it to stricter rate limits.

My best guess is that the Wikidata dev ops folks were messing with the rate limits over the past few days.

Unfortunately this error is present again for at least a week now, and I cannot proceed because of this. Is there a way to preset the suggested properties? It never suggests the ones the I use the most often but because of this error I cannot add new columns based on reconciled columns just the ones in suggested properties…

Is there a way to preset the suggested properties?

Unfortunately, no. One thing you could try is to use the mirror service at https://wikidata-reconciliation.wmcloud.org/en/api

It's rumored that it might have fewer restrictions because it's hosted in the Wikimedia Cloud.

Tom

tl;dr

If you're seeing "Sorry, something went wrong" when using Wikidata reconciliation in OpenRefine, switch your service URL to https://wikidata-reconciliation.wmcloud.org/en/api. A fix is in progress; see details below.

See the video below on how to add a new service

add-service

Investigation

It seems @antonin_d set up a redirect from https://wikidata.reconci.link/en/api to https://wikidata-reconciliation.wmcloud.org/en/api

$ curl -sI https://wikidata.reconci.link/en/api 
HTTP/1.1 307 Temporary Redirect
Date: Tue, 14 Apr 2026 15:09:01 GMT
Server: Apache/2.4.66 (Debian)
Location: https://wikidata-reconciliation.wmcloud.org/en/api
Content-Type: text/html; charset=iso-8859-1

However, we still have users reporting issues “Add column from reconciled values” fails when typing Wikidata properties manually

So I did a test comparing the feature using both endpoints

With the endpoint hosted on wmcloud

With the endpoint hosted on wiki-link

  • Reconcile, working today, though some users have reported intermittent errors earlier. I suppose the redirect deployed recently fixed the issue.
  • Search for match - :cross_mark: error message Sorry, something went wrong. Please try again later
  • Add a column from reconciled value - :white_check_mark: working
  • Add a column from reconciled value > Search Properties - :cross_mark: error message Sorry, something went wrong. Please try again later

Technical details

The browser blocks the request at the 307 redirect because the redirect response from wikidata.reconci.link does not carry an Access-Control-Allow-Origin header. Chrome's console shows:

HTTP/1.1 307 Temporary Redirect
Date: Tue, 14 Apr 2026 14:57:43 GMT
Server: Apache/2.4.66 (Debian)
Location: https://wikidata-reconciliation.wmcloud.org/en/suggest/entity?prefix=Newcastle%20University&spell=always&exact=false&prefixed=true
Content-Length: 480
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Type: text/html; charset=iso-8859-1
Status = CORS error

The final wmcloud endpoint does return the CORS header correctly, but the browser rejects the 307 before following the redirect.