Web of Science Researcher API

Query and harvest Web of Science author records — researcher profiles, their documents and their peer-review record — searchable by ORCID, ResearcherID, author name, organization and country. Published contract: 4 operation(s).

Operations 4

GET /researchers Search researchers
GET /researchers/{rid} Get detailed information for a Researcher
GET /researchers/{rid}/peer-reviews Get peer reviews list for a researcher
GET /researchers/{rid}/documents Get documents published by a researcher

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/wos-researcher"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

clarivate-wos-researcher-openapi.json Raw ↑
{"openapi":"3.0.0","info":{"title":"Web of Science™ Researcher API","description":"\nThis API provides researcher-level metadata from [Web of Science Researcher Profiles](https://fileshare.clarivate.com/training/wosg/researcher-profiles/#/) and metrics with JSON output format and advanced search query syntax. A Web of Science ResearcherID is a unique identifier that differentiates researchers in the Web of Science. As of the July 2022 Web of Science release, every author record in the Web of Science Core Collection will appear with a unique ResearcherID.\n\n## What is a ResearcherID?\nA ResearcherID is a combination of 1-3 letters, 4 numbers, and the year of RID generation, e.g., I-2162-2019. RIDs will exist for:\n* Any algorithmically generated author record in the Web of Science Core Collection.\n* Any Web of Science researcher profile generated and claimed by a Web of Science user.\n\nHaving a ResearcherID does not mean that the author record has been claimed by the researcher. Researchers can claim author records that have not already been claimed by someone else. Once claimed, they may add publications to their author record.\n\nWeb of Science ResearcherID provides the global research community with an invaluable index of author information. Web of Science Group products (Web of Science, InCites, EndNote) use a Web of Science ResearcherID to match and disambiguate researchers across products.\n\nHaving a Web of Science ResearcherID helps:\n* solve author identity issues\n* ensure correct attribution between you and your publications on the Web of Science\n* add dynamic citation metrics from the Web of Science Core Collection to your researcher profile, Web of Science, InCites, etc.\n* effortlessly sync your ORCID record with publications and peer reviews from your Web of Science researcher profile.\n\n## <a name=\"search\"></a> Search query syntax (query parameter `q=`)\nA query contains a condition, which itself is made up of an attribute, an operator and a value or literal to compare to. Multiple conditions can be combined with AND and OR, and grouped with parentheses. The following table contains the supported attributes and operators and will be updated continously with other attributes in the future.\n|                 **Operator/Attribute**                | **Equals =** | **Not Equals !=** | **Contains ~** | **Not Contains !~** |\n|:-----------------------------------------------------:|:------------:|:-----------------:|:--------------:|:-------------------:|\n|                     **FirstName**                     |              |                   |        x       |          x          |\n|                      **LastName**                     |              |                   |        x       |          x          |\n|              **ResearcherID** or **RID**              |       x      |         x         |                |                     |\n|                       **ORCID**                       |       x      |         x         |                |                     |\n| **Organization** or **OG** <br/>Organization Enhanced Name (currently only primary affilation) |              |                   |        x       |          x          |\n|    **Topic** or **TS** <br/>Title, Abstract and Keywords   |              |                   |        x       |          x          |\n| **Country** or **CU** <br/>  Country of primary affiliation|       x      |                   |        x       |          x          |\n|       **ClaimStatus** <br/>  True or False                 |       x      |        x          |                |                     |\n|       **HighlyCitedResearcher** or **HCR** <br/>  True or False                 |       x      |        x          |                |                     |\n-----------------------------------------------------------------------------------------------------------------------------------\n\n*Note:* Attribute names are case insensitive and operators contains only symbols and not words, e.g.\n  * FIRSTNAME ~ \"Eugene\" - **CORRECT**\n  * FIRSTNAME CONTAINS \"Eugene\" - **WRONG**\n\n### Examples:\n* Search specific researcher name: <code>FirstName~\"Eugene\" AND LastName~\"Garfield\" </code>\n* Search researchers that may published in the specific topic: <code>TS~\"humanoid robot\" OR ((TS ~\"robotics\" OR TS~\"robotic\" OR TS ~\"robot\") AND TS ~ \"humanoid\")</code>\n* Search Highly Cited Researchers on a specific topic: <code>TS~\"robotics\" AND HCR=true</code> \n* Search specifc researcher name on specific organization (primary affiliation): <code>FirstName~\"Eugene\" AND LastName~\"Garfield\" AND OG ~ \"University of Barcelona\"</code>\n* Search specific Country researchers: <code>CU=\"england\"</code>\n* Search researchers on claim status: <code>claimStatus=true</code>\n## Pagination\nTo ensure fast response time, each search or multiple entity calls (such as `/researchers`) retrieve only a certain number of hits/records.\n\nThere are two optional request parameters to browse along with the result&#58; _limit_ and _page_.\n\n- limit&#58; Number of returned results, ranging from 1 to 50 (default **10**)\n- page&#58; Specifying a page to retrieve, ranging from 1 to the max possible page depending on the limit (default **1**)\n\nMoreover, this information is shown in the response body, in the tag **metadata**&#58;\n\n```json\n\"metadata\": {\n  \"total\": 91,\n  \"page\": 1,\n  \"limit\": 10\n}\n```\n\n## Errors\nThe Web of Science Researcher API uses conventional HTTP success or failure status codes. For errors, additional information is included to indicate what went wrong in the JSON response. The list of HTTP codes is listed below.\n\n| Code  | Title  | Description |\n|---|---|---|\n| 400  | Bad request  | Request syntax error |\n| 401  | Unauthorized  | The API key is invalid or missed |\n| 404  | Not found  | The resource is not found |\n| 405 | Method not allowed | Method other than GET is not allowed |\n| 50X  | Server errors  | Technical error with servers|\nEach error response (except `401 Unauthorized` error) contains the code of the error, the title of the error and detailed description of the error: a misprint in an endpoint, wrong URL parameter, etc. The example of the error message is shown below:\n\n```json\n\"error\": {\n  \"status\": 404,\n  \"title\": \"Resource couldn't be found\",\n  \"details\": \"There is no information in Researcher API for ResearcherID=ABC-1234-3245. :(\"\n}\n```\nFor the `401 Unauthorized` error the response body is a little bit different:\n```json\n{\n  \"error_description\": \"The access token is missing\",\n  \"error\": \"invalid_request\"\n}\n```","version":"1.0.0","termsOfService":"https://clarivate.com/download/web-of-science-incites-apis/","license":{"name":"Clarivate Content as a Service Licence","url":"https://clarivate.com/wp-content/uploads/dlm_uploads/2019/08/Product-Service-Terms.pdf"}},"paths":{"/researchers":{"summary":"Search researchers in Web of Science","get":{"summary":"Search researchers","description":"Search researchers in Web of Science Researcher Profile\n\nThe endpoint doesn't require any parameter to return results, although the default parameters will be used. By default, responses are sorted by relevance.","parameters":[{"name":"q","in":"query","required":false,"description":"Query syntax for searching and filtering Researchers. The search logic is described in the section [Search](#search).","schema":{"type":"string"},"examples":{"Search1":{"value":"FirstName~\"Eugene\" AND LastName~\"Garfield\"","summary":"Search by firstname and lastname"},"Search2":{"value":"TS~\"robotics\"","summary":"Search by topic"},"Search3":{"value":"OG~\"harvard\"","summary":"Search by organisation enhanced name"},"Search4":{"value":"RID=A-1009-2008","summary":"Search by RID"},"Search5":{"value":"ORCID=0000-0000-000-0000","summary":"Search by ORCID"},"Search6":{"value":"claimStatus=false","summary":"Search by claim status"},"Search7":{"value":"CU~\"england\"","summary":"Search by country"},"Search8":{"value":"fullName=\"Benjimen\"","summary":"Search by author name"},"Search9":{"value":"TS~\"robotics\" AND HCR=true","summary":"Search Highly Cited Researchers on a specific topic"}}},{"name":"page","in":"query","required":false,"description":"Specifying a page to retrieve","schema":{"type":"integer","format":"int32","default":1}},{"name":"limit","in":"query","required":false,"description":"Number of returned results, ranging from 1 to 50","schema":{"type":"integer","format":"int32","default":10}},{"name":"sort","in":"query","required":false,"description":"Sort by the following attributes. If the value is not provided the records will be sorted by relevance","schema":{"type":"string","enum":["NumberOfDocuments","PrimaryAffiliation","LastName"]}},{"name":"sortOrder","in":"query","required":false,"description":"Sorting order. If sorting by relevance, value must be DESC.","schema":{"type":"string","enum":["ASC","DESC"],"default":"DESC"}}],"responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ResearcherList"},"examples":{"Search by Firstname and Lastname":{"value":{"metadata":{"total":1,"page":1,"limit":10},"hits":[{"rid":["A-1009-2008"],"orcids":[],"fullName":"Garfield, Eugene","primaryAffiliation":["University of Barcelona"],"self":"/researchers/A-1009-2008","hIndex":167,"documentsCount":{"count":1550,"self":"/researchers/A-1009-2008/documents"},"totalTimesCited":106024,"matches":[{"field":"fullName","value":["<em>Garfield</em>, <em>Eugene</em>"]}]}]}},"Search by topic":{"value":{"metadata":{"total":188756,"page":1,"limit":10},"hits":[{"rid":["AAF-3524-2021"],"orcids":["0000-0003-1494-2798"],"fullName":"samani, Hooman","primaryAffiliation":["University of Arts London"],"self":"/researchers/AAF-3524-2021","hIndex":10,"documentsCount":{"count":53,"self":"/researchers/AAF-3524-2021/documents"},"totalTimesCited":356,"matches":[{"field":"keywords","value":["<em>robotics</em>","<em>robotics</em> for pandemics","<em>robotics</em> leadership","cultural <em>robotics</em>","intelligent <em>robotics</em>"]}],"authorships":[{"ut":"WOS:000679225000055","matches":[{"field":"abstract","value":["in the <em>robotics</em> platforms for"]}]},{"ut":"WOS:000517102000030","matches":[{"field":"abstract","value":["and mobile <em>robotics</em>. The prototype"]}]},{"ut":"WOS:000463337300022","matches":[{"field":"title","value":["Crossover of Affective Artificial Intelligence Between <em>Robotics</em> Simulator and Games"]},{"field":"abstract","value":["field of <em>robotics</em> and artificial","in social <em>robotics</em> and in"]}]},{"ut":"WOS:000425915900010","matches":[{"field":"abstract","value":["a novel <em>robotics</em> system with"]}]},{"ut":"WOS:000387254400006","matches":[{"field":"abstract","value":["Lovotics (love + <em>robotics</em>) Love Attitude"]}]},{"ut":"WOS:000380583900029","matches":[{"field":"abstract","value":["and mobile <em>robotics</em>. A mobile"]}]},{"ut":"WOS:000328071900001","matches":[{"field":"title","value":["Cultural <em>Robotics</em>: The Culture of <em>Robotics</em> and <em>Robotics</em> in Culture Regular Paper"]},{"field":"abstract","value":["of \"Cultural <em>Robotics</em>\" with regard","of cultural <em>robotics</em>. According to","of the <em>robotics</em> developers, and","sustainability of <em>robotics</em> culture based"]}]},{"ut":"WOS:000332829800042","matches":[{"field":"title","value":["Towards the definition of cultural <em>robotics</em>"]},{"field":"abstract","value":["of \"Cultural <em>Robotics</em>\" for the","of cultural <em>robotics</em>. Considering the"]}]},{"ut":"WOS:000318430000017","matches":[{"field":"title","value":["Towards <em>Robotics</em> Leadership: An Analysis of Leadership Characteristics and the Roles Robots Will Inherit in Future Human Society"]},{"field":"abstract","value":["idea of <em>robotics</em> leadership. By"]}]},{"ut":"WOS:000300610200018","matches":[{"field":"abstract","value":["developed a <em>robotics</em> system that","neuroscience, and <em>robotics</em> to develop"]}]}]},{"rid":["G-7213-2012"],"orcids":["0009-0001-2008-4817"],"fullName":"Koh, Jeffrey T.K.V.","primaryAffiliation":["Chem Team Pte Ltd"],"self":"/researchers/G-7213-2012","hIndex":5,"documentsCount":{"count":16,"self":"/researchers/G-7213-2012/documents"},"totalTimesCited":116,"matches":[{"field":"keywords","value":["<em>robotics</em> leadership","collaborative <em>robotics</em>","creative <em>robotics</em>","cultural <em>robotics</em>","social <em>robotics</em>"]}],"authorships":[{"ut":"WOS:000389721600001","matches":[{"field":"title","value":["Cultural <em>Robotics</em>: Robots as Participants and Creators of Culture"]},{"field":"abstract","value":["culture with <em>robotics</em> are outlined","of Cultural <em>Robotics</em>. Four categories","of social <em>robotics</em> as a"]}]},{"ut":"WOS:000380549300009","matches":[{"field":"title","value":["FROM BOB THE BUILDER TO BAXTER THE BUILDER <i>Arguing for applying collaborative <em>robotics</em> in architecture</i>"]},{"field":"abstract","value":["<em>Robotics</em> in Architecture"]}]},{"ut":"WOS:000328071900001","matches":[{"field":"title","value":["Cultural <em>Robotics</em>: The Culture of <em>Robotics</em> and <em>Robotics</em> in Culture Regular Paper"]},{"field":"abstract","value":["of \"Cultural <em>Robotics</em>\" with regard","of cultural <em>robotics</em>. According to","of the <em>robotics</em> developers, and","sustainability of <em>robotics</em> culture based"]}]},{"ut":"WOS:000318430000017","matches":[{"field":"title","value":["Towards <em>Robotics</em> Leadership: An Analysis of Leadership Characteristics and the Roles Robots Will Inherit in Future Human Society"]},{"field":"abstract","value":["idea of <em>robotics</em> leadership. By"]}]}]},{"rid":["DVU-2695-2022"],"orcids":["0000-0003-1240-9228"],"fullName":"Eguchi, Amy","primaryAffiliation":["University of California San Diego"],"self":"/researchers/DVU-2695-2022","hIndex":9,"documentsCount":{"count":37,"self":"/researchers/DVU-2695-2022/documents"},"totalTimesCited":330,"matches":[{"field":"keywords","value":["<em>robotics</em> competition","<em>robotics</em> education","ai-powered <em>robotics</em>","educational <em>robotics</em>","k-12 educational <em>robotics</em>"]}],"authorships":[{"ut":"WOS:000881628600033","matches":[{"field":"title","value":["Machine Learning Application with AI-<em>Robotics</em> Tool - What We Learned from Pilot Studies"]},{"field":"abstract","value":["an AI-<em>Robotics</em> tool. This","through AI-<em>Robotics</em>\" [1] presented"]}]},{"ut":"WOS:000891806300005","matches":[{"field":"title","value":["Understanding Machine Learning Through AI-powered Educational <em>Robotics</em> - Pilot Study with Undergraduate Students"]},{"field":"abstract","value":["powered educational <em>robotics</em> projects introducing","powered educational <em>robotics</em> tool and"]}]},{"ut":"WOS:000614822800038","matches":[{"field":"title","value":["Bridging <em>Robotics</em> Education between High School and University: RoboCup@Home Education"]},{"field":"abstract","value":["school level <em>robotics</em> education leads","university level <em>robotics</em> development. Our"]}]},{"ut":"WOS:000403399600039","matches":[{"field":"title","value":["<em>Robotics</em> to Promote STEM Learning: Educational <em>Robotics</em> Unit for 4th Grade Science"]},{"field":"abstract","value":["Educational <em>robotics</em> or <em>Robotics</em> in Education","an educational <em>robotics</em> unit that","importantly, educational <em>robotics</em> provides a","tool. Educational <em>robotics</em> is an","use of <em>robotics</em> as a"]}]},{"ut":"WOS:000367763400045","matches":[{"field":"title","value":["RoboCupJunior for promoting STEM education, 21st century skills, and technological advancement through <em>robotics</em> competition"]},{"field":"abstract","value":["international educational <em>robotics</em> initiative, aiming","through educational <em>robotics</em> competition inaugurated","to promote <em>robotics</em> and AI"]}]},{"ut":"WOS:000417222200016","matches":[{"field":"title","value":["Turning Competitions into Global Collaboration through Educational <em>Robotics</em>: Case of RoboCupJunior"]},{"field":"abstract","value":["an educational <em>robotics</em> competition promoting","an educational <em>robotics</em> competition, noticed","students. Educational <em>robotics</em> is a"]}]},{"ut":"WOS:000352082700271","matches":[{"field":"title","value":["A Proposal for RoboCupJunior in Africa: Promoting Educational Experience with <em>Robotics</em>"]},{"field":"abstract","value":["RoboCup, a <em>Robotics</em> initiative that","an educational <em>robotics</em> initiative that","promote educational <em>robotics</em> to students","through educational <em>robotics</em> activities around","to promote <em>Robotics</em> and AI"]}]},{"ut":"WOS:000404656700007","matches":[{"field":"title","value":["Student Learning Experience through CoSpace Educational <em>Robotics</em>: 3D Simulation Educational <em>Robotics</em> Tool"]},{"field":"abstract","value":["CoSpace educational <em>robotics</em> is a","CoSpace educational <em>robotics</em> program was","CoSpace educational <em>robotics</em>, and a","CoSpace educational <em>robotics</em>, the educational","CoSpace educational <em>robotics</em>. During the","with educational <em>robotics</em>-both are"]}]},{"ut":"WOS:000363574900014","matches":[{"field":"title","value":["Educational <em>Robotics</em> Meets Inquiry-Based Learning: Integrating Inquiry-Based Learning into Educational <em>Robotics</em>"]},{"field":"abstract","value":["City. Educational <em>robotics</em> is a","a digital <em>Robotics</em> Engineering Journal","into educational <em>robotics</em> in an","the educational <em>robotics</em> hands-on"]}]},{"ut":"WOS:000364153400003","matches":[{"field":"title","value":["Educational <em>Robotics</em> Theories and Practice: Tips for how to do it Right"]},{"field":"abstract","value":["Educational <em>robotics</em> is a","implementing educational <em>robotics</em> for K","is educational <em>robotics</em>?\" and \"What","of educational <em>robotics</em> - from its","that educational <em>robotics</em> can provide","to educational <em>robotics</em>, learning experiences","years. Educational <em>robotics</em> is a"]}]}]},{"rid":["FOJ-7391-2022"],"orcids":[],"fullName":"Pagliarini, Luigi","primaryAffiliation":["Technical University of Denmark","Acad Fine Arts Macerata"],"self":"/researchers/FOJ-7391-2022","hIndex":5,"documentsCount":{"count":29,"self":"/researchers/FOJ-7391-2022/documents"},"totalTimesCited":336,"matches":[{"field":"keywords","value":["<em>robotics</em>","ai <em>robotics</em>","eco-<em>robotics</em>","modular <em>robotics</em>","user-friendly <em>robotics</em>"]}],"authorships":[{"ut":"WOS:000519247800003","matches":[{"field":"title","value":["Approaching AI and <em>Robotics</em> in an Eco-friendly Way"]},{"field":"abstract","value":["and Modular <em>Robotics</em>, we describe","using modular <em>robotics</em> for creating"]}]},{"ut":"WOS:000525322700006","matches":[{"field":"title","value":["PixelBeing - An Eco-sustainable Approach to <em>Robotics</em> and AI"]},{"field":"abstract","value":["and Modular <em>Robotics</em>, we describe","using modular <em>robotics</em> for creating"]}]},{"ut":"WOS:000455898900004","matches":[{"field":"title","value":["User-Friendly <em>Robotics</em> 3-Playware"]},{"field":"abstract","value":["user-friendly <em>robotics</em> suggests a","user-friendly <em>robotics</em>. We exemplify"]}]},{"ut":"WOS:000455898900006","matches":[{"field":"title","value":["User-Friendly <em>Robotics</em> 2-Interfacing <em>Robotics</em> with any user"]},{"field":"abstract","value":["AI and <em>Robotics</em> with the","User-Friendly <em>Robotics</em> approach leads","User-Friendly <em>Robotics</em>, and we","complex behaviour <em>robotics</em>. We define"]}]},{"ut":"WOS:000455898900005","matches":[{"field":"title","value":["User-Friendly <em>Robotics</em> 1-AI Software"]},{"field":"abstract","value":["AI and <em>Robotics</em> by highlight","User-Friendly <em>Robotics</em> approach leads","User-Friendly <em>Robotics</em>, and we","the first <em>Robotics</em> ones to"]}]},{"ut":"WOS:000396618200012","matches":[{"field":"title","value":["The future of <em>Robotics</em> Technology"]},{"field":"abstract","value":["and wearable <em>robotics</em>. In short","by 2020, <em>robotics</em> will be","decade the <em>robotics</em> industry has","next decade <em>robotics</em> will become"]}]},{"ut":"WOS:000404239000008","matches":[{"field":"title","value":["The future of <em>Robotics</em> Technology"]},{"field":"abstract","value":["and wearable <em>robotics</em>. In short","by 2020, <em>robotics</em> will be","decade the <em>robotics</em> industry has","next decade <em>robotics</em> will become"]}]},{"ut":"WOS:000379120600007","matches":[{"field":"abstract","value":["in rehabilitation <em>robotics</em>, a major","redefinition of <em>Robotics</em> Assistive Technology"]}]},{"ut":"WOS:000448910500027","matches":[{"field":"title","value":["Distributed <em>Robotics</em> Education"]},{"field":"abstract","value":["Distributed <em>robotics</em> takes many","for distributed <em>robotics</em> and human"]}]},{"ut":"WOS:000075926200027","matches":[{"field":"title","value":["Evolutionary <em>robotics</em> - A children's game."]},{"field":"abstract","value":["The evolutionary <em>robotics</em> approach has","an evolutionary <em>robotics</em> approach that"]}]}]},{"rid":["DJQ-4562-2022"],"orcids":[],"fullName":"Naruse, Keitaro","primaryAffiliation":["University of Aizu"],"self":"/researchers/DJQ-4562-2022","hIndex":7,"documentsCount":{"count":81,"self":"/researchers/DJQ-4562-2022/documents"},"totalTimesCited":250,"matches":[{"field":"keywords","value":["<em>robotics</em> technology components","cloud <em>robotics</em>","networked cloud <em>robotics</em>","swarm <em>robotics</em>"]}],"authorships":[{"ut":"WOS:000975272900012","matches":[{"field":"abstract","value":["Internet of <em>robotics</em> things are"]}]},{"ut":"WOS:000815713600010","matches":[{"field":"abstract","value":["autonomous mobile <em>robotics</em> technologies. This"]}]},{"ut":"WOS:000638399700008","matches":[{"field":"title","value":["QoS-Aware Robotic Streaming Workflow Allocation in Cloud <em>Robotics</em> Systems"]},{"field":"abstract","value":["for cloud <em>robotics</em> is receiving","for cloud <em>robotics</em>. In this","networked cloud <em>robotics</em> (NCR) (e"]}]},{"ut":"WOS:000631194800001","matches":[{"field":"title","value":["Survey on Cloud <em>Robotics</em> Architecture and Model-Driven Reference Architecture for Decentralized Multicloud Heterogeneous-<em>Robotics</em> Platform"]},{"field":"abstract","value":["<em>Robotics</em> engineering is","for cloud <em>robotics</em>. However, most cloud <em>robotics</em> architectures are","heterogeneous cloud <em>robotics</em> platforms have","in heterogeneous <em>robotics</em> and their","platform for <em>robotics</em>. There are"]}]},{"ut":"WOS:000481988100013","matches":[{"field":"title","value":["Special Issue on Machine Learning for <em>Robotics</em> and Swarm Systems"]}]},{"ut":"WOS:000521753600027","matches":[{"field":"title","value":["Data Acquisition Framework for Cloud <em>Robotics</em>"]},{"field":"abstract","value":["In cloud <em>robotics</em> environments, software"]}]},{"ut":"WOS:000439698700016","matches":[{"field":"title","value":["A Study of Robotic Cooperation in Cloud <em>Robotics</em>: Architecture and Challenges"]},{"field":"abstract","value":["Networked <em>robotics</em> involves a","in cloud <em>robotics</em>. We first","network. Cloud <em>robotics</em>, which allows","robot, networked <em>robotics</em> has been","traditional networked <em>robotics</em> have been"]}]},{"ut":"WOS:000405040600009","matches":[{"field":"abstract","value":["in swarm <em>robotics</em>, has a"]}]},{"ut":"WOS:000352950900138","matches":[{"field":"abstract","value":["in swarm <em>robotics</em>, has a"]}]}]},{"rid":["IUN-3793-2023"],"orcids":[],"fullName":"Polydorou, Doros","primaryAffiliation":["Cyprus University of Technology"],"self":"/researchers/IUN-3793-2023","hIndex":3,"documentsCount":{"count":7,"self":"/researchers/IUN-3793-2023/documents"},"totalTimesCited":49,"matches":[{"field":"keywords","value":["<em>robotics</em> leadership","cultural <em>robotics</em>","interactive collaborative <em>robotics</em>"]}],"authorships":[{"ut":"WOS:000463337300022","matches":[{"field":"title","value":["Crossover of Affective Artificial Intelligence Between <em>Robotics</em> Simulator and Games"]},{"field":"abstract","value":["field of <em>robotics</em> and artificial","in social <em>robotics</em> and in"]}]},{"ut":"WOS:000328071900001","matches":[{"field":"title","value":["Cultural <em>Robotics</em>: The Culture of <em>Robotics</em> and <em>Robotics</em> in Culture Regular Paper"]},{"field":"abstract","value":["of \"Cultural <em>Robotics</em>\" with regard","of cultural <em>robotics</em>. According to","of the <em>robotics</em> developers, and","sustainability of <em>robotics</em> culture based"]}]},{"ut":"WOS:000332829800042","matches":[{"field":"title","value":["Towards the definition of cultural <em>robotics</em>"]},{"field":"abstract","value":["of \"Cultural <em>Robotics</em>\" for the","of cultural <em>robotics</em>. Considering the"]}]},{"ut":"WOS:000318430000017","matches":[{"field":"title","value":["Towards <em>Robotics</em> Leadership: An Analysis of Leadership Characteristics and the Roles Robots Will Inherit in Future Human Society"]},{"field":"abstract","value":["idea of <em>robotics</em> leadership. By"]}]}]},{"rid":["FVF-1170-2022"],"orcids":["0000-0002-2553-854X"],"fullName":"Sabanovic, Selma","primaryAffiliation":["Indiana University Bloomington"],"self":"/researchers/FVF-1170-2022","hIndex":24,"documentsCount":{"count":134,"self":"/researchers/FVF-1170-2022/documents"},"totalTimesCited":1941,"matches":[{"field":"keywords","value":["<em>robotics</em>","assistive <em>robotics</em>","co-<em>robotics</em>","home <em>robotics</em>","social <em>robotics</em>"]}],"authorships":[{"ut":"WOS:000643728500223","matches":[{"field":"title","value":["Exploring Creative Contents in Social <em>Robotics</em>"]}]},{"ut":"WOS:001180861500001","matches":[{"field":"title","value":["Designing \"Companion Artifacts\": The Relational Construction of Culture and Technology in Social <em>Robotics</em>"]}]},{"ut":"WOS:000435423100003","matches":[{"field":"title","value":["Between the Social and the Technical: Negotiation of Human-Centered <em>Robotics</em> Design in a Middle School Classroom"]},{"field":"abstract","value":["human-centered <em>robotics</em> (HCR) learning"]}]},{"ut":"WOS:000494261200044","matches":[{"field":"title","value":["Pop-up <em>Robotics</em>: Facilitating HRI in Public Spaces"]}]},{"ut":"WOS:000390047300011","matches":[{"field":"title","value":["Dragons, Ladybugs, and Softballs: Girls' STEM Engagement with Human-Centered <em>Robotics</em>"]},{"field":"abstract","value":["Human-centered <em>robotics</em>, with its","after-school <em>robotics</em> club can","centered telepresence <em>robotics</em> design","designed two <em>robotics</em> challenges. We"]}]},{"ut":"WOS:000390047300012","matches":[{"field":"title","value":["Dragons, Ladybugs, and Softballs: Girls' STEM Engagement with Human-Centered <em>Robotics</em> (vol 25, pg 915, 2016)"]}]},{"ut":"WOS:000352030600017","matches":[{"field":"title","value":["<em>Robotics</em> Narratives and Networks"]}]},{"ut":"WOS:000336332200002","matches":[{"field":"title","value":["Inventing Japan's '<em>robotics</em> culture': The repeated assembly of science, technology, and culture in social <em>robotics</em>"]},{"field":"abstract","value":["and kansei <em>robotics</em>' - show the","construction of <em>robotics</em> and culture","from current <em>robotics</em> research - the","in social <em>robotics</em> discourse","practices of <em>robotics</em> researchers. Three","the Humanoid <em>Robotics</em> Project HRP"]}]},{"ut":"WOS:000322803100010","matches":[{"field":"title","value":["Conceptual foundations for representing <em>robotics</em> history in a non-linear digital archive"]},{"field":"abstract","value":["field of <em>robotics</em> over the"]}]},{"ut":"WOS:000208893600009","matches":[{"field":"abstract","value":["acceptability of <em>robotics</em>, based on","interaction between <em>robotics</em> and society","interviews with <em>robotics</em> researchers in"]}]}]},{"rid":["HJL-8926-2023"],"orcids":[],"fullName":"Santos, Jose","primaryAffiliation":["University of Nebraska Lincoln"],"self":"/researchers/HJL-8926-2023","hIndex":2,"documentsCount":{"count":9,"self":"/researchers/HJL-8926-2023/documents"},"totalTimesCited":26,"matches":[{"field":"keywords","value":["behavior-based <em>robotics</em>","embedded <em>robotics</em>","mobile <em>robotics</em>"]}],"authorships":[{"ut":"WOS:000427099000114","matches":[{"field":"title","value":["Behavior-Based <em>Robotics</em> Programming for a Mobile <em>Robotics</em> ECE Course Using the CEENBoT Mobile <em>Robotics</em> Platform"]},{"field":"abstract","value":["Behavior-based <em>robotics</em> is a","based mobile <em>robotics</em> platform known","introductory Mobile <em>Robotics</em> course at","small educational <em>robotics</em> platforms usually"]}]}]},{"rid":["DXX-0357-2022"],"orcids":["0000-0003-0504-5227"],"fullName":"Zawieska, Karolina","primaryAffiliation":["Aarhus University"],"self":"/researchers/DXX-0357-2022","hIndex":4,"documentsCount":{"count":13,"self":"/researchers/DXX-0357-2022/documents"},"totalTimesCited":271,"matches":[{"field":"keywords","value":["<em>robotics</em>","educational <em>robotics</em>","responsible <em>robotics</em>","social <em>robotics</em>"]}],"authorships":[{"ut":"WOS:001066045400041","matches":[{"field":"abstract","value":["ethics in <em>robotics</em>. We argue"]}]},{"ut":"WOS:000581950700005","matches":[{"field":"title","value":["From responsible <em>robotics</em> towards a human rights regime oriented to the challenges of <em>robotics</em> and artificial intelligence"]},{"field":"abstract","value":["nature of <em>robotics</em> technologies from","the responsible <em>robotics</em> initiative is"]}]},{"ut":"WOS:000541406700003","matches":[{"field":"title","value":["Disengagement with ethics in <em>robotics</em> as a tacit form of dehumanisation"]},{"field":"abstract","value":["of the <em>robotics</em> community and","outside of <em>robotics</em>.","related to <em>robotics</em> technologies have"]}]},{"ut":"WOS:000467295400119","matches":[{"field":"abstract","value":["considerations in <em>robotics</em> research. We","of the <em>robotics</em> community has"]}]},{"ut":"WOS:000719339300065","matches":[{"field":"abstract","value":["and responsible <em>robotics</em>. It discusses","to the <em>robotics</em> domain, through"]}]},{"ut":"WOS:000418793600024","matches":[{"field":"abstract","value":["interest in <em>robotics</em> will be"]}]},{"ut":"WOS:000400259000033","matches":[{"field":"title","value":["The Social Construction of Creativity in Educational <em>Robotics</em>"]},{"field":"abstract","value":["for educational <em>robotics</em>. This paper","in educational <em>robotics</em> has been","of educational <em>robotics</em> is its"]}]},{"ut":"WOS:000366603200132","matches":[{"field":"abstract","value":["develop social <em>robotics</em>. It has","space, with <em>robotics</em> developing as"]}]}]},{"rid":["GDL-2989-2022"],"orcids":["0000-0002-7091-8349"],"fullName":"Hempel, Michael","primaryAffiliation":["University of Nebraska Lincoln"],"self":"/researchers/GDL-2989-2022","hIndex":15,"documentsCount":{"count":155,"self":"/researchers/GDL-2989-2022/documents"},"totalTimesCited":911,"matches":[{"field":"keywords","value":["behavior-based <em>robotics</em>","embedded <em>robotics</em>","mobile <em>robotics</em>"]}],"authorships":[{"ut":"WOS:000427099000114","matches":[{"field":"title","value":["Behavior-Based <em>Robotics</em> Programming for a Mobile <em>Robotics</em> ECE Course Using the CEENBoT Mobile <em>Robotics</em> Platform"]},{"field":"abstract","value":["Behavior-based <em>robotics</em> is a","based mobile <em>robotics</em> platform known","introductory Mobile <em>Robotics</em> course at","small educational <em>robotics</em> platforms usually"]}]},{"ut":"WOS:000427099000076","matches":[{"field":"abstract","value":["and industrial <em>robotics</em> can be"]}]}]}]}}}}}},"default":{"description":"Default error sample response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"tags":["Researchers"]}},"/researchers/{

# --- truncated at 32 KB (62 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/clarivate/refs/heads/main/openapi/clarivate-wos-researcher-openapi.json