API Key Provisioning
Overview
To gain access to the NewRosetta API, you need to submit a request through the Demo API Key Request Form. Once submitted, a team member will review your request. If approved, an API Key and Client ID will be provisioned for your organization.
How You’ll Receive Your Credentials
- Email Notification: Once your request is approved, the API Key and Client ID will be sent to your registered email.
- Developer Tab Access: Your credentials will also be accessible in the Developer tab of your account dashboard on the NewRosetta platform.
Using Your Credentials
After receiving your API Key and Client ID, include them as headers in your API requests to authenticate.
Header Details
Header Key | Description |
---|---|
x-api-key | Your unique API Key |
x-client-id | Your organization’s Client ID |
Example: API Key and Client ID
Here’s an example of the credentials you will receive:
x-api-key: abcd1234-5678-90ef-ghij-klmnopqrstuv
x-client-id: org-12345-client
Sample Request with Headers
Below is an example of how to structure your request with the provided API Key and Client ID:
curl -X GET "https://api.newrosetta.com/v1/resource"
-H "x-api-key: abcd1234-5678-90ef-ghij-klmnopqrstuv"
-H "x-client-id: org-12345-client"
Example in Python
import requests
url = "https://api.newrosetta.com/v1/resource"
headers = {
"x-api-key": "abcd1234-5678-90ef-ghij-klmnopqrstuv",
"x-client-id": "org-12345-client"
}
response = requests.get(url, headers=headers)
print(response.json())
Additional Notes
- Ensure the API Key and Client ID are kept secure and not shared outside your organization.
- Each API Key is tied to your organization’s specific account and permissions.
- Contact support at [email protected] for any issues or queries.
Updated 3 months ago