FIWARE Registrations API

The Registrations API from FIWARE — 2 operation(s) for registrations.

Operations 5

GET /v2/registrations List Registrations #
POST /v2/registrations Create Registration #
GET /v2/registrations/{registrationId} Retrieve Registration #
DELETE /v2/registrations/{registrationId} Delete Registration #
PATCH /v2/registrations/{registrationId} Update Registration #

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/fiware-registrations-api"
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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

fiware-registrations-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: '1.0'
  title: FIWARE-NGSI v2 Specification Registrations API
  description: 'TODO: Add a description'
servers:
- url: http://orion.lab.fiware.org/
tags:
- name: Registrations
paths:
  /v2/registrations:
    get:
      description: Lists all the context provider registrations present in the system.
      summary: List Registrations
      tags:
      - Registrations
      operationId: List Registrations
      parameters:
      - name: limit
        in: query
        required: false
        description: Limit the number of registrations to be retrieved
        schema:
          type: number
          format: double
      - name: offset
        in: query
        required: false
        description: Skip a number of registrations
        schema:
          type: number
          format: double
      - name: options
        in: query
        required: false
        x-enum-elements:
        - name: count
          description: ''
        description: Options dictionary
        schema:
          type: string
          enum:
          - count
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ListRegistrationsResponse'
              example:
              - id: abcdefg
                description: Example Context Source
                dataProvided:
                  entities:
                  - id: Bcn_Welt
                    type: Room
                  attrs:
                  - temperature
                provider:
                  http:
                    url: http://contextsource.example.org
                  supportedForwardingMode: all
                expires: '2017-10-31T12:00:00'
                status: active
                forwardingInformation:
                  timesSent: 12
                  lastForwarding: '2017-10-06T16:00:00Z'
                  lastSuccess: '2017-10-06T16:00:00Z'
                  lastFailure: '2017-10-05T16:00:00Z'
      x-unitTests:
      - request:
          method: GET
          uri: /v2/registrations?limit=10&offset=20
        expectedResponse:
          x-allowExtraHeaders: true
          x-bodyMatchMode: RAW
          x-arrayOrderedMatching: false
          x-arrayCheckCount: false
          x-matchResponseSchema: true
          headers: {}
          body: '[  {    "id": "abcdefg",    "description": "Example Context Source",    "dataProvided": {      "entities": [        {          "id": "Bcn_Welt",          "type": "Room"        }      ],      "attrs": [        "temperature"      ]    },    "provider": {      "http": {        "url": "http://contextsource.example.org"      },      "supportedForwardingMode": "all"    },    "expires": "2017-10-31T12:00:00",    "status": "active",    "forwardingInformation": {      "timesSent": 12,      "lastForwarding": "2017-10-06T16:00:00.00Z",      "lastSuccess": "2017-10-06T16:00:00.00Z",      "lastFailure": "2017-10-05T16:00:00.00Z"    }  }]'
        x-testShouldPass: true
        x-testEnabled: true
        x-testName: List Registrations1
        x-testDescription: Lists all the context provider registrations present in the system.
      x-operation-settings:
        CollectParameters: false
        AllowDynamicQueryParameters: false
        AllowDynamicFormParameters: false
        IsMultiContentStreaming: false
    post:
      description: "Creates a new context provider registration. This is typically used for binding context sources\nas providers of certain data.\nThe registration is represented by a JSON object as described at the beginning of this section.\nResponse:\n* Successful operation uses 201 Created\n* Errors use a non-2xx and (optionally) an error payload. See subsection on \"Error Responses\" for\n  more details."
      summary: Create Registration
      tags:
      - Registrations
      operationId: Create Registration
      parameters:
      - name: Content-Type
        in: header
        required: true
        description: ''
        schema:
          type: string
      responses:
        '201':
          description: ''
      x-unitTests:
      - request:
          method: POST
          uri: /v2/registrations
          headers:
            Content-Type: application/json
          body: '{  "description": "Relative Humidity Context Source",  "dataProvided": {    "entities": [      {        "id": "room2",        "type": "Room"      }    ],    "attrs": [      "relativeHumidity"    ]  },  "provider": {    "http":{       "url": "http://localhost:1234"    }  }}'
        expectedResponse:
          x-allowExtraHeaders: true
          x-bodyMatchMode: NONE
          x-arrayOrderedMatching: false
          x-arrayCheckCount: false
          x-matchResponseSchema: true
          headers:
            Location: /v2/registrations/abcde98765
        x-testShouldPass: true
        x-testEnabled: true
        x-testName: Create Registration1
        x-testDescription: "Creates a new context provider registration. This is typically used for binding context sources\nas providers of certain data.\nThe registration is represented by a JSON object as described at the beginning of this section.\nResponse:\n* Successful operation uses 201 Created\n* Errors use a non-2xx and (optionally) an error payload. See subsection on \"Error Responses\" for\n  more details."
      x-operation-settings:
        CollectParameters: false
        AllowDynamicQueryParameters: false
        AllowDynamicFormParameters: false
        IsMultiContentStreaming: false
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateRegistrationRequest'
        required: true
  /v2/registrations/{registrationId}:
    get:
      description: "The response is the registration represented by a JSON object as described at the beginning of this\nsection.\nResponse:\n* Successful operation uses 200 OK\n* Errors use a non-2xx and (optionally) an error payload. See subsection on \"Error Responses\" for\n  more details."
      summary: Retrieve Registration
      tags:
      - Registrations
      operationId: Retrieve Registration
      parameters:
      - name: registrationId
        in: path
        required: true
        description: registration Id.
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RetrieveRegistrationResponse'
              example:
                id: abcdefg
                description: Example Context Source
                dataProvided:
                  entities:
                  - id: Bcn_Welt
                    type: Room
                  attrs:
                  - temperature
                provider:
                  http:
                    url: http://contextsource.example.org
                  supportedForwardingMode: all
                expires: '2017-10-31T12:00:00'
                status: failed
                forwardingInformation:
                  timesSent: 12
                  lastForwarding: '2017-10-06T16:00:00Z'
                  lastFailure: '2017-10-06T16:00:00Z'
                  lastSuccess: '2017-10-05T18:25:00Z'
      x-unitTests:
      - request:
          method: GET
          uri: /v2/registrations/abcdef
        expectedResponse:
          x-allowExtraHeaders: true
          x-bodyMatchMode: RAW
          x-arrayOrderedMatching: false
          x-arrayCheckCount: false
          x-matchResponseSchema: true
          headers:
            Content-Type: application/json
          body: '  {        "id": "abcdefg",        "description": "Example Context Source",        "dataProvided": {          "entities": [            {              "id": "Bcn_Welt",              "type": "Room"            }          ],          "attrs": [            "temperature"          ]        },        "provider": {          "http": {            "url": "http://contextsource.example.org"          },          "supportedForwardingMode": "all"        },        "expires": "2017-10-31T12:00:00",        "status": "failed",        "forwardingInformation": {          "timesSent": 12,          "lastForwarding": "2017-10-06T16:00:00.00Z",          "lastFailure": "2017-10-06T16:00:00.00Z",          "lastSuccess": "2017-10-05T18:25:00.00Z",        }  }      '
        x-testShouldPass: true
        x-testEnabled: true
        x-testName: Retrieve Registration1
        x-testDescription: "The response is the registration represented by a JSON object as described at the beginning of this\nsection.\nResponse:\n* Successful operation uses 200 OK\n* Errors use a non-2xx and (optionally) an error payload. See subsection on \"Error Responses\" for\n  more details."
      x-operation-settings:
        CollectParameters: false
        AllowDynamicQueryParameters: false
        AllowDynamicFormParameters: false
        IsMultiContentStreaming: false
    delete:
      description: "Cancels a context provider registration.\nResponse:\n* Successful operation uses 204 No Content\n* Errors use a non-2xx and (optionally) an error payload. See subsection on \"Error Responses\" for\n  more details."
      summary: Delete Registration
      tags:
      - Registrations
      operationId: Delete Registration
      parameters:
      - name: registrationId
        in: path
        required: true
        description: registration Id.
        schema:
          type: string
      responses:
        '204':
          description: ''
      x-unitTests:
      - request:
          method: DELETE
          uri: /v2/registrations/abcdef
        expectedResponse:
          x-allowExtraHeaders: true
          x-bodyMatchMode: NONE
          x-arrayOrderedMatching: false
          x-arrayCheckCount: false
          x-matchResponseSchema: true
          headers: {}
        x-testShouldPass: true
        x-testEnabled: true
        x-testName: Delete Registration1
        x-testDescription: "Cancels a context provider registration.\nResponse:\n* Successful operation uses 204 No Content\n* Errors use a non-2xx and (optionally) an error payload. See subsection on \"Error Responses\" for\n  more details."
      x-operation-settings:
        CollectParameters: false
        AllowDynamicQueryParameters: false
        AllowDynamicFormParameters: false
        IsMultiContentStreaming: false
    patch:
      description: "Only the fields included in the request are updated in the registration.\nResponse:\n* Successful operation uses 204 No Content\n* Errors use a non-2xx and (optionally) an error payload. See subsection on \"Error Responses\" for\n  more details."
      summary: Update Registration
      tags:
      - Registrations
      operationId: Update Registration
      parameters:
      - name: registrationId
        in: path
        required: true
        description: registration Id.
        schema:
          type: string
      - name: Content-Type
        in: header
        required: true
        description: ''
        schema:
          type: string
      responses:
        '204':
          description: ''
      x-unitTests:
      - request:
          method: PATCH
          uri: /v2/registrations/abcdef
          headers:
            Content-Type: application/json
          body: '{    "expires": "2017-10-04T00:00:00"}'
        expectedResponse:
          x-allowExtraHeaders: true
          x-bodyMatchMode: NONE
          x-arrayOrderedMatching: false
          x-arrayCheckCount: false
          x-matchResponseSchema: true
          headers: {}
        x-testShouldPass: true
        x-testEnabled: true
        x-testName: Update Registration1
        x-testDescription: "Only the fields included in the request are updated in the registration.\nResponse:\n* Successful operation uses 204 No Content\n* Errors use a non-2xx and (optionally) an error payload. See subsection on \"Error Responses\" for\n  more details."
      x-operation-settings:
        CollectParameters: false
        AllowDynamicQueryParameters: false
        AllowDynamicFormParameters: false
        IsMultiContentStreaming: false
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateRegistrationRequest'
        required: true
components:
  schemas:
    UpdateRegistrationRequest:
      title: Update Registration request
      example:
        expires: '2017-10-04T00:00:00'
      type: object
      properties:
        expires:
          description: ''
          example: 10/4/2017 12:00:00 AM
          type: string
      required:
      - expires
    CreateRegistrationRequest:
      title: Create Registration request
      example:
        description: Relative Humidity Context Source
        dataProvided:
          entities:
          - id: room2
            type: Room
          attrs:
          - relativeHumidity
        provider:
          http:
            url: http://localhost:1234
      type: object
      properties:
        description:
          description: ''
          example: Relative Humidity Context Source
          type: string
        dataProvided:
          description: ''
          example:
            entities:
            - id: room2
              type: Room
            attrs:
            - relativeHumidity
          type: object
        provider:
          description: ''
          example:
            http:
              url: http://localhost:1234
          type: object
      required:
      - description
      - dataProvided
      - provider
    ListRegistrationsResponse:
      title: List Registrations response
      example:
        id: abcdefg
        description: Example Context Source
        dataProvided:
          entities:
          - id: Bcn_Welt
            type: Room
          attrs:
          - temperature
        provider:
          http:
            url: http://contextsource.example.org
          supportedForwardingMode: all
        expires: '2017-10-31T12:00:00'
        status: active
        forwardingInformation:
          timesSent: 12
          lastForwarding: '2017-10-06T16:00:00Z'
          lastSuccess: '2017-10-06T16:00:00Z'
          lastFailure: '2017-10-05T16:00:00Z'
      type: object
      properties:
        id:
          description: ''
          example: abcdefg
          type: string
        description:
          description: ''
          example: Example Context Source
          type: string
        dataProvided:
          description: ''
          example:
            entities:
            - id: Bcn_Welt
              type: Room
            attrs:
            - temperature
          type: object
        provider:
          description: ''
          example:
            http:
              url: http://contextsource.example.org
            supportedForwardingMode: all
          type: object
        expires:
          description: ''
          example: 10/31/2017 12:00:00 PM
          type: string
        status:
          description: ''
          example: active
          type: string
        forwardingInformation:
          description: ''
          example:
            timesSent: 12
            lastForwarding: '2017-10-06T16:00:00Z'
            lastSuccess: '2017-10-06T16:00:00Z'
            lastFailure: '2017-10-05T16:00:00Z'
          type: object
      required:
      - id
      - description
      - dataProvided
      - provider
      - expires
      - status
      - forwardingInformation
    RetrieveRegistrationResponse:
      title: Retrieve Registration response
      example:
        id: abcdefg
        description: Example Context Source
        dataProvided:
          entities:
          - id: Bcn_Welt
            type: Room
          attrs:
          - temperature
        provider:
          http:
            url: http://contextsource.example.org
          supportedForwardingMode: all
        expires: '2017-10-31T12:00:00'
        status: failed
        forwardingInformation:
          timesSent: 12
          lastForwarding: '2017-10-06T16:00:00Z'
          lastFailure: '2017-10-06T16:00:00Z'
          lastSuccess: '2017-10-05T18:25:00Z'
      type: object
      properties:
        id:
          description: ''
          example: abcdefg
          type: string
        description:
          description: ''
          example: Example Context Source
          type: string
        dataProvided:
          description: ''
          example:
            entities:
            - id: Bcn_Welt
              type: Room
            attrs:
            - temperature
          type: object
        provider:
          description: ''
          example:
            http:
              url: http://contextsource.example.org
            supportedForwardingMode: all
          type: object
        expires:
          description: ''
          example: 10/31/2017 12:00:00 PM
          type: string
        status:
          description: ''
          example: failed
          type: string
        forwardingInformation:
          description: ''
          example:
            timesSent: 12
            lastForwarding: '2017-10-06T16:00:00Z'
            lastFailure: '2017-10-06T16:00:00Z'
            lastSuccess: '2017-10-05T18:25:00Z'
          type: object
      required:
      - id
      - description
      - dataProvided
      - provider
      - expires
      - status
      - forwardingInformation